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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7 'conditions': [
8 ['OS=="android"', {
9 'targets': [
10 {
11 'target_name': 'web_contents_delegate_android',
12 'type': 'static_library',
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../net/net.gyp:net',
16 '../skia/skia.gyp:skia',
17 '../ui/ui.gyp:ui',
18 '../webkit/support/webkit_support.gyp:glue',
19 'content_browser',
20 'content_common',
21 'web_contents_delegate_android_jni_headers',
22 ],
23 'include_dirs': [
24 '..',
25 '../skia/config',
26 '<(SHARED_INTERMEDIATE_DIR)/web_contents_delegate_android',
27 ],
28 'sources': [
29 'components/web_contents_delegate_android/component_jni_registrar.cc ',
30 'components/web_contents_delegate_android/component_jni_registrar.h' ,
31 'components/web_contents_delegate_android/web_contents_delegate_andr oid.cc',
32 'components/web_contents_delegate_android/web_contents_delegate_andr oid.h',
33 ],
34 },
35 {
36 'target_name': 'web_contents_delegate_android_java',
37 'type': 'none',
38 'dependencies': [
39 '../base/base.gyp:base',
40 'content_java',
41 ],
42 'variables': {
43 'package_name': 'web_contents_delegate_android',
44 'java_in_dir': 'components/web_contents_delegate_android/java',
45 },
46 'includes': [ '../build/java.gypi' ],
47 },
48 {
49 'target_name': 'web_contents_delegate_android_jni_headers',
50 'type': 'none',
51 'sources': [
52 'components/web_contents_delegate_android/java/src/org/chromium/cont ent/components/web_contents_delegate_android/WebContentsDelegateAndroid.java',
53 ],
54 'variables': {
55 'jni_gen_dir': 'web_contents_delegate_android',
56 },
57 'includes': [ '../build/jni_generator.gypi' ],
58 },
59 ],
60 }],
61 ],
62 }
OLDNEW
« 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