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

Unified Diff: cc/cc.gyp

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from jdduke@ and aelias@ Created 6 years, 1 month 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
Index: cc/cc.gyp
diff --git a/cc/cc.gyp b/cc/cc.gyp
index 21fb242c0130f00ec344c811a7a313db941e7e52..3f686493e17ed7abedc92f62a8196ada8682f72b 100644
--- a/cc/cc.gyp
+++ b/cc/cc.gyp
@@ -554,4 +554,31 @@
],
},
],
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ # GN: //cc:cc_android_java_enums_srcjar
+ 'target_name': 'cc_java_selection_bound_type',
+ 'type': 'none',
+ 'variables': {
+ 'source_file': 'input/selection_bound_type.h',
+ },
+ 'includes': [ '../build/android/java_cpp_enum.gypi' ],
+ },
+ {
+ # GN: //cc:cc_java
+ 'target_name': 'cc_java',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': '../cc/android/java',
+ },
+ 'dependencies': [
+ 'cc_java_selection_bound_type',
+ ],
+ 'includes': [ '../build/java.gypi' ],
+ },
+ ],
+ }],
+ ],
}

Powered by Google App Engine
This is Rietveld 408576698