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

Unified Diff: chrome/chrome.gyp

Issue 10830012: [Android] Add chrome_java target for building Java code in the chromium layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@reland
Patch Set: Created 8 years, 5 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
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index 860a1ddcfa06b9edd1fab0b1c4d2c8e7902d486b..62b7a243530d69bf8ed16f2c0e054a6dfd4a1d5f 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -1063,5 +1063,24 @@
},
]}, # 'targets'
], # OS=="win"
+ ['OS=="android"',
+ {
+ 'targets': [
+ {
+ 'target_name': 'chrome_java',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base_java',
+ '../net/net.gyp:net_java',
+ '../content/content.gyp:content_java',
+ ],
+ 'variables': {
+ 'package_name': 'chrome',
+ 'java_in_dir': '../chrome/android/java',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ },
+ ]}, # 'targets'
+ ], #OS=="android"
], # 'conditions'
}

Powered by Google App Engine
This is Rietveld 408576698