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

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: adding web_contents_delegate_android component. 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: 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..aede1b9063e96967eebf7c854ddf68aace66090c
--- /dev/null
+++ b/android_webview/native/webview_native.gyp
@@ -0,0 +1,39 @@
+# 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',
+ 'android_webview_native_jni',
+ ],
+ 'include_dirs': [
+ '../..',
+ '../../skia/config',
+ '<(SHARED_INTERMEDIATE_DIR)/android_webview',
+ ],
+ 'sources': [
+ 'android_webview_jni_registrar.cc',
+ 'android_webview_jni_registrar.h',
+ 'webview_web_contents_delegate_android.cc',
+ 'webview_web_contents_delegate_android.h',
+ ],
+ },
+ {
+ 'target_name': 'android_webview_native_jni',
+ 'type': 'none',
+ 'sources': [
+ ],
+ 'variables': {
+ 'jni_gen_dir': 'android_webview',
+ },
+ 'includes': [ '../../build/jni_generator.gypi' ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698