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

Unified Diff: chrome/chrome.gyp

Issue 10702083: Add ContentViewDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: it builds (but other code in chrome/ doesn't...) 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 2d6ef055c584e2a6138925036a6d502a821f82e8..fa415a3654e5d392e50e5054605ab68e4fe0bbd1 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -1060,5 +1060,29 @@
},
]}, # 'targets'
], # OS=="win"
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'chrome_java',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base_java',
+ '../content/content.gyp:content_java',
+ ],
+ 'variables': {
+ 'package_name': 'chrome',
+ 'java_in_dir': '../chrome/android/java',
+ },
+ 'includes': [
+ '../build/java.gypi'
+ ],
+ },
+ {
+ 'target_name': 'chrome_jni_headers',
+ 'type': 'none',
+ 'includes': [ 'chrome_jni.gypi' ],
+ },
+ ]},
+ ], # OS=="android"
], # 'conditions'
}

Powered by Google App Engine
This is Rietveld 408576698