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

Unified Diff: third_party/eyesfree/BUILD.gn

Issue 512923002: Add support for Android aidl and support for gyp's java_in_dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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 | « net/net.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/eyesfree/BUILD.gn
diff --git a/third_party/eyesfree/BUILD.gn b/third_party/eyesfree/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c435ece3f1d81f5decdd92fe10e5fdc32d073638
--- /dev/null
+++ b/third_party/eyesfree/BUILD.gn
@@ -0,0 +1,18 @@
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+
+android_library("eyesfree_java") {
+ srcjar_deps = [ ":eyesfree_aidl" ]
+ DEPRECATED_java_in_dir = "src/android/java/src"
+}
+
+android_aidl("eyesfree_aidl") {
+ import_include = "src/android/java/src"
+ sources = [
+ "src/android/java/src/com/googlecode/eyesfree/braille/display/IBrailleService.aidl",
+ "src/android/java/src/com/googlecode/eyesfree/braille/display/IBrailleServiceCallback.aidl",
+ "src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/ISelfBrailleService.aidl",
+ "src/android/java/src/com/googlecode/eyesfree/braille/translate/ITranslatorService.aidl",
+ "src/android/java/src/com/googlecode/eyesfree/braille/translate/ITranslatorServiceCallback.aidl",
+ ]
+}
« no previous file with comments | « net/net.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698