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

Unified Diff: content/content_components_web_contents_delegate_android.gypi

Issue 11365199: Move WebContentsDelegateAndroid to content/components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 1 month 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 | « content/content.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_components_web_contents_delegate_android.gypi
diff --git a/content/content_components_web_contents_delegate_android.gypi b/content/content_components_web_contents_delegate_android.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..2d5b96e7a093c4c9dc7e26e3af8e3d111c853a3b
--- /dev/null
+++ b/content/content_components_web_contents_delegate_android.gypi
@@ -0,0 +1,62 @@
+# 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.
+
+{
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'web_contents_delegate_android',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../skia/skia.gyp:skia',
+ '../ui/ui.gyp:ui',
+ '../webkit/support/webkit_support.gyp:glue',
+ 'content_browser',
+ 'content_common',
+ 'web_contents_delegate_android_jni_headers',
+ ],
+ 'include_dirs': [
+ '..',
+ '../skia/config',
+ '<(SHARED_INTERMEDIATE_DIR)/web_contents_delegate_android',
+ ],
+ 'sources': [
+ 'components/web_contents_delegate_android/component_jni_registrar.cc',
+ 'components/web_contents_delegate_android/component_jni_registrar.h',
+ 'components/web_contents_delegate_android/web_contents_delegate_android.cc',
+ 'components/web_contents_delegate_android/web_contents_delegate_android.h',
+ ],
+ },
+ {
+ 'target_name': 'web_contents_delegate_android_java',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'content_java',
+ ],
+ 'variables': {
+ 'package_name': 'web_contents_delegate_android',
+ 'java_in_dir': 'components/web_contents_delegate_android/java',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ },
+ {
+ 'target_name': 'web_contents_delegate_android_jni_headers',
+ 'type': 'none',
+ 'sources': [
+ 'components/web_contents_delegate_android/java/src/org/chromium/content/components/web_contents_delegate_android/WebContentsDelegateAndroid.java',
+ ],
+ 'variables': {
+ 'jni_gen_dir': 'web_contents_delegate_android',
+ },
+ 'includes': [ '../build/jni_generator.gypi' ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « content/content.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698