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

Unified Diff: content/content.gyp

Issue 10209003: Upstream Android Geolocation (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add OWNERS Created 8 years, 8 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: content/content.gyp
diff --git a/content/content.gyp b/content/content.gyp
index 8d1f4d6cf0e884f43404369f6e34b0a5f47f5c3a..6869fddfd9f4847fe7959248abe047fdd0716005 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -197,5 +197,34 @@
],
},
],
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'content_jni_headers',
+ 'type': 'none',
+ 'variables': {
+ 'java_sources': [
+ 'android/java/org/chromium/content/browser/LocationProvider.java',
+ ],
+ 'jni_headers': [
+ '<(SHARED_INTERMEDIATE_DIR)/content/jni/location_provider_jni.h',
+ ],
+ },
+ 'includes': [ '../build/jni_generator.gypi' ],
+ },
+ {
+ 'target_name': 'content_java',
+ 'type': 'none',
+ 'variables': {
+ 'package_name': 'content',
+ 'java_in_dir': '../content/android/java',
+ },
+ 'dependencies': [
+ '../base/base.gyp:base_java',
+ ],
+ 'includes': [ '../build/java.gypi' ],
+ },
+ ]
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698