OLD | NEW |
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 { |
11 'target_name': 'web_contents_delegate_android', | 11 'target_name': 'web_contents_delegate_android', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../content/content.gyp:content_browser', | 15 '../content/content.gyp:content_browser', |
16 '../content/content.gyp:content_common', | 16 '../content/content.gyp:content_common', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 '../skia/skia.gyp:skia', | 18 '../skia/skia.gyp:skia', |
19 '../ui/gfx/gfx.gyp:gfx', | 19 '../ui/gfx/gfx.gyp:gfx', |
20 '../ui/ui.gyp:ui', | 20 '../ui/ui.gyp:ui', |
21 '../webkit/glue/webkit_glue.gyp:glue', | 21 '../webkit/glue/webkit_glue.gyp:glue', |
22 'web_contents_delegate_android_jni_headers', | 22 'web_contents_delegate_android_jni_headers', |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 '../skia/config', | 26 '../skia/config', |
27 '<(SHARED_INTERMEDIATE_DIR)/web_contents_delegate_android', | |
28 ], | 27 ], |
29 'sources': [ | 28 'sources': [ |
30 'web_contents_delegate_android/color_chooser_android.cc', | 29 'web_contents_delegate_android/color_chooser_android.cc', |
31 'web_contents_delegate_android/color_chooser_android.h', | 30 'web_contents_delegate_android/color_chooser_android.h', |
32 'web_contents_delegate_android/component_jni_registrar.cc', | 31 'web_contents_delegate_android/component_jni_registrar.cc', |
33 'web_contents_delegate_android/component_jni_registrar.h', | 32 'web_contents_delegate_android/component_jni_registrar.h', |
34 'web_contents_delegate_android/validation_message_bubble_android.cc'
, | 33 'web_contents_delegate_android/validation_message_bubble_android.cc'
, |
35 'web_contents_delegate_android/validation_message_bubble_android.h', | 34 'web_contents_delegate_android/validation_message_bubble_android.h', |
36 'web_contents_delegate_android/web_contents_delegate_android.cc', | 35 'web_contents_delegate_android/web_contents_delegate_android.cc', |
37 'web_contents_delegate_android/web_contents_delegate_android.h', | 36 'web_contents_delegate_android/web_contents_delegate_android.h', |
(...skipping 21 matching lines...) Expand all Loading... |
59 ], | 58 ], |
60 'variables': { | 59 'variables': { |
61 'jni_gen_package': 'web_contents_delegate_android', | 60 'jni_gen_package': 'web_contents_delegate_android', |
62 }, | 61 }, |
63 'includes': [ '../build/jni_generator.gypi' ], | 62 'includes': [ '../build/jni_generator.gypi' ], |
64 }, | 63 }, |
65 ], | 64 ], |
66 }], | 65 }], |
67 ], | 66 ], |
68 } | 67 } |
OLD | NEW |