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/ui.gyp:ui', | 19 '../ui/ui.gyp:ui', |
20 '../webkit/support/webkit_support.gyp:glue', | 20 '../webkit/glue/webkit_glue.gyp:glue', |
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 'web_contents_delegate_android/color_chooser_android.cc', | 29 'web_contents_delegate_android/color_chooser_android.cc', |
30 'web_contents_delegate_android/color_chooser_android.h', | 30 'web_contents_delegate_android/color_chooser_android.h', |
(...skipping 24 matching lines...) Expand all Loading... |
55 ], | 55 ], |
56 'variables': { | 56 'variables': { |
57 'jni_gen_package': 'web_contents_delegate_android', | 57 'jni_gen_package': 'web_contents_delegate_android', |
58 }, | 58 }, |
59 'includes': [ '../build/jni_generator.gypi' ], | 59 'includes': [ '../build/jni_generator.gypi' ], |
60 }, | 60 }, |
61 ], | 61 ], |
62 }], | 62 }], |
63 ], | 63 ], |
64 } | 64 } |
OLD | NEW |