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

Side by Side Diff: content/content_components_web_contents_delegate_android.gypi

Issue 11316153: implement input type=color for android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'conditions': [ 7 'conditions': [
8 ['OS=="android"', { 8 ['OS=="android"', {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 10 matching lines...) Expand all
21 'web_contents_delegate_android_jni_headers', 21 'web_contents_delegate_android_jni_headers',
22 ], 22 ],
23 'include_dirs': [ 23 'include_dirs': [
24 '..', 24 '..',
25 '../skia/config', 25 '../skia/config',
26 '<(SHARED_INTERMEDIATE_DIR)/web_contents_delegate_android', 26 '<(SHARED_INTERMEDIATE_DIR)/web_contents_delegate_android',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'components/web_contents_delegate_android/component_jni_registrar.cc ', 29 'components/web_contents_delegate_android/component_jni_registrar.cc ',
30 'components/web_contents_delegate_android/component_jni_registrar.h' , 30 'components/web_contents_delegate_android/component_jni_registrar.h' ,
31 'components/web_contents_delegate_android/color_chooser_android.h',
Peter Beverloo 2012/11/23 17:55:48 My alphabet lists "l" before "m", and "c" before "
Miguel Garcia 2012/11/26 11:35:10 Done.
32 'components/web_contents_delegate_android/color_chooser_android.cc',
31 'components/web_contents_delegate_android/web_contents_delegate_andr oid.cc', 33 'components/web_contents_delegate_android/web_contents_delegate_andr oid.cc',
32 'components/web_contents_delegate_android/web_contents_delegate_andr oid.h', 34 'components/web_contents_delegate_android/web_contents_delegate_andr oid.h',
33 ], 35 ],
34 }, 36 },
35 { 37 {
36 'target_name': 'web_contents_delegate_android_java', 38 'target_name': 'web_contents_delegate_android_java',
37 'type': 'none', 39 'type': 'none',
38 'dependencies': [ 40 'dependencies': [
39 '../base/base.gyp:base', 41 '../base/base.gyp:base',
40 'content_java', 42 'content_java',
41 ], 43 ],
42 'variables': { 44 'variables': {
43 'package_name': 'web_contents_delegate_android', 45 'package_name': 'web_contents_delegate_android',
44 'java_in_dir': 'components/web_contents_delegate_android/java', 46 'java_in_dir': 'components/web_contents_delegate_android/java',
45 }, 47 },
46 'includes': [ '../build/java.gypi' ], 48 'includes': [ '../build/java.gypi' ],
47 }, 49 },
48 { 50 {
49 'target_name': 'web_contents_delegate_android_jni_headers', 51 'target_name': 'web_contents_delegate_android_jni_headers',
50 'type': 'none', 52 'type': 'none',
51 'sources': [ 53 'sources': [
54 'components/web_contents_delegate_android/java/src/org/chromium/cont ent/components/web_contents_delegate_android/ColorChooserAndroid.java',
52 'components/web_contents_delegate_android/java/src/org/chromium/cont ent/components/web_contents_delegate_android/WebContentsDelegateAndroid.java', 55 'components/web_contents_delegate_android/java/src/org/chromium/cont ent/components/web_contents_delegate_android/WebContentsDelegateAndroid.java',
53 ], 56 ],
54 'variables': { 57 'variables': {
55 'jni_gen_dir': 'web_contents_delegate_android', 58 'jni_gen_dir': 'web_contents_delegate_android',
56 }, 59 },
57 'includes': [ '../build/jni_generator.gypi' ], 60 'includes': [ '../build/jni_generator.gypi' ],
58 }, 61 },
59 ], 62 ],
60 }], 63 }],
61 ], 64 ],
62 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698