Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions extension/android/jni/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,22 @@ runtime.export_file(
name = "jni_helper.cpp",
)

runtime.export_file(
name = "log.cpp",
)

runtime.export_file(
name = "jni_helper.h",
)

runtime.export_file(
name = "log.h",
)

runtime.export_file(
name = "jni_layer_constants.h",
)

runtime.cxx_library(
name = "jni_headers",
exported_headers = [
Expand Down
2 changes: 1 addition & 1 deletion extension/android/jni/jni_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include "jni_helper.h"
#include <executorch/extension/android/jni/jni_helper.h>

namespace executorch::jni_helper {

Expand Down
2 changes: 1 addition & 1 deletion extension/android/jni/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include "log.h"
#include <executorch/extension/android/jni/log.h>

#ifdef __ANDROID__

Expand Down
Loading