OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'webkit_support', | 11 'target_name': 'webkit_support', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'variables': { 'enable_wexit_time_destructors': 1, }, | 13 'variables': { 'enable_wexit_time_destructors': 1, }, |
14 'dependencies': [ | 14 'dependencies': [ |
15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
16 '<(DEPTH)/base/base.gyp:base_i18n', | 16 '<(DEPTH)/base/base.gyp:base_i18n', |
17 '<(DEPTH)/media/media.gyp:media', | 17 '<(DEPTH)/media/media.gyp:media', |
18 '<(DEPTH)/net/net.gyp:net', | 18 '<(DEPTH)/net/net.gyp:net', |
19 '<(DEPTH)/skia/skia.gyp:skia', | 19 '<(DEPTH)/skia/skia.gyp:skia', |
20 '<(DEPTH)/testing/gtest.gyp:gtest', | 20 '<(DEPTH)/testing/gtest.gyp:gtest', |
21 '<(DEPTH)/ui/ui.gyp:ui', | 21 '<(DEPTH)/ui/ui.gyp:ui', |
22 'appcache', | 22 'appcache', |
23 'blob', | 23 'blob', |
24 'database', | 24 'database', |
25 'dom_storage', | 25 'dom_storage', |
26 'fileapi', | 26 'fileapi', |
27 'forms', | |
28 'glue', | 27 'glue', |
29 'user_agent', | 28 'user_agent', |
30 'webkit_base', | 29 'webkit_base', |
31 'webkit_gpu', | 30 'webkit_gpu', |
32 'webkit_media', | 31 'webkit_media', |
33 'webkit_support_common', | 32 'webkit_support_common', |
34 ], | 33 ], |
35 'include_dirs': [ | 34 'include_dirs': [ |
36 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 35 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
37 ], | 36 ], |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 '<(DEPTH)', | 164 '<(DEPTH)', |
166 ], | 165 ], |
167 'conditions': [ | 166 'conditions': [ |
168 ['OS=="android"', { | 167 ['OS=="android"', { |
169 'toolsets': ['target', 'host'], | 168 'toolsets': ['target', 'host'], |
170 }], | 169 }], |
171 ], | 170 ], |
172 }, | 171 }, |
173 ], | 172 ], |
174 } | 173 } |
OLD | NEW |