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

Unified Diff: android_webview/native/webview_native.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: nit fixed. 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
« no previous file with comments | « android_webview/native/aw_web_contents_delegate.cc ('k') | base/android/jni_generator/jni_generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/webview_native.gyp
diff --git a/android_webview/native/webview_native.gyp b/android_webview/native/webview_native.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..7b31a4a83c4fa46bae9e61c3f9019ef0660e0c87
--- /dev/null
+++ b/android_webview/native/webview_native.gyp
@@ -0,0 +1,40 @@
+# 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.
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'webview_native',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../base/base.gyp:base_static',
+ '../../chrome/browser/component/components.gyp:web_contents_delegate_android',
+ 'android_webview_native_jni',
+ ],
+ 'include_dirs': [
+ '../..',
+ '../../skia/config',
+ '<(SHARED_INTERMEDIATE_DIR)/android_webview',
+ ],
+ 'sources': [
+ 'android_webview_jni_registrar.cc',
+ 'android_webview_jni_registrar.h',
+ 'aw_web_contents_delegate.cc',
+ 'aw_web_contents_delegate.h',
+ ],
+ },
+ {
+ 'target_name': 'android_webview_native_jni',
+ 'type': 'none',
+ 'sources': [
+ ],
+ 'variables': {
+ 'jni_gen_dir': 'android_webview',
+ },
+ 'includes': [ '../../build/jni_generator.gypi' ],
+ },
+ ],
+}
« no previous file with comments | « android_webview/native/aw_web_contents_delegate.cc ('k') | base/android/jni_generator/jni_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698