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

Unified Diff: chrome/chrome_browser_components.gyp

Issue 10831060: Refactor the Android port to allow access to the chrome layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gyp fixes Created 8 years, 4 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_browser_components.gyp
diff --git a/chrome/chrome_browser_components.gyp b/chrome/chrome_browser_components.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..df2c90ae530635f80340c92fdf6c8776d3c0b844
--- /dev/null
+++ b/chrome/chrome_browser_components.gyp
@@ -0,0 +1,29 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
Jói 2012/08/21 12:17:08 I think this file should live at chrome/browser/co
Leandro Graciá Gil 2012/08/21 16:17:42 I'll be moving it then. Any requirements for JNI h
+ 'includes': [
+ 'browser/component/web_contents_delegate_android/web_contents_delegate_android.gypi'
+ ],
+
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'browser_component_jni_headers',
+ 'type': 'none',
+ 'sources': [
+ 'android/java/src/org/chromium/chrome/browser/component/web_contents_delegate_android/WebContentsDelegateAndroid.java',
+ ],
+ 'variables': {
+ 'jni_gen_dir': 'chrome/browser_component',
+ },
+ 'includes': [ '../build/jni_generator.gypi' ],
+ },
+ ],
+ }],
+ ],
+}
+

Powered by Google App Engine
This is Rietveld 408576698