Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Unified Diff: mojo/android/BUILD.gn

Issue 898853006: Java content handler for Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « examples/android/BUILD.gn ('k') | mojo/android/system/base_run_loop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/android/BUILD.gn
diff --git a/mojo/android/BUILD.gn b/mojo/android/BUILD.gn
index c0ad926524f8ab970aa08178e28b1434f213ca28..9983a8362324583ba0aca3863cb33dbcf955f434 100644
--- a/mojo/android/BUILD.gn
+++ b/mojo/android/BUILD.gn
@@ -28,6 +28,7 @@ generate_jni("jni_headers") {
generate_jni("system_java_jni_headers") {
sources = [
"system/src/org/chromium/mojo/system/impl/CoreImpl.java",
+ "system/src/org/chromium/mojo/system/impl/BaseRunLoop.java",
]
jni_package = "mojo"
@@ -37,14 +38,17 @@ source_set("libsystem_java") {
sources = [
"system/core_impl.cc",
"system/core_impl.h",
+ "system/base_run_loop.cc",
+ "system/base_run_loop.h",
]
deps = [
":system_java_jni_headers",
"//base",
- "//mojo/edk/system",
- "//mojo/environment:chromium",
"//mojo/public/cpp/environment",
+ "//mojo/common:common",
+ "//mojo/public/c/system:system",
+ "//mojo/public/cpp/bindings:callback",
]
}
@@ -57,6 +61,7 @@ android_library("system_java") {
"system/src/org/chromium/mojo/system/impl/MessagePipeHandleImpl.java",
"system/src/org/chromium/mojo/system/impl/SharedBufferHandleImpl.java",
"system/src/org/chromium/mojo/system/impl/UntypedHandleImpl.java",
+ "system/src/org/chromium/mojo/system/impl/BaseRunLoop.java",
]
deps = [
@@ -122,6 +127,8 @@ shared_library("mojo_java_unittests") {
"//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils",
"//mojo/public/cpp/test_support:test_utils",
"//mojo/public/cpp/environment",
+ "//mojo/edk/system",
+ "//mojo/environment:chromium",
]
defines = [ "UNIT_TEST" ]
}
« no previous file with comments | « examples/android/BUILD.gn ('k') | mojo/android/system/base_run_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698