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)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
18 '<(DEPTH)/cc/cc.gyp:cc', | 18 '<(DEPTH)/cc/cc.gyp:cc', |
19 '<(DEPTH)/media/media.gyp:media', | 19 '<(DEPTH)/media/media.gyp:media', |
20 '<(DEPTH)/net/net.gyp:net', | 20 '<(DEPTH)/net/net.gyp:net', |
21 '<(DEPTH)/skia/skia.gyp:skia', | 21 '<(DEPTH)/skia/skia.gyp:skia', |
22 '<(DEPTH)/testing/gtest.gyp:gtest', | 22 '<(DEPTH)/testing/gtest.gyp:gtest', |
23 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen', | |
24 '<(DEPTH)/ui/gl/gl.gyp:gl', | 23 '<(DEPTH)/ui/gl/gl.gyp:gl', |
25 '<(DEPTH)/ui/ui.gyp:shell_dialogs', | 24 '<(DEPTH)/ui/ui.gyp:shell_dialogs', |
26 '<(DEPTH)/ui/ui.gyp:ui', | 25 '<(DEPTH)/ui/ui.gyp:ui', |
27 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 26 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
28 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', | 27 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', |
29 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', | 28 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', |
30 'glue', | 29 'glue', |
31 'glue_common', | 30 'glue_common', |
32 'plugins', | 31 'plugins', |
33 'plugins_common', | 32 'plugins_common', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 105 |
107 { | 106 { |
108 'target_name': 'webkit_support_common', | 107 'target_name': 'webkit_support_common', |
109 'type': 'static_library', | 108 'type': 'static_library', |
110 'variables': { 'enable_wexit_time_destructors': 1, }, | 109 'variables': { 'enable_wexit_time_destructors': 1, }, |
111 'dependencies': [ | 110 'dependencies': [ |
112 '<(DEPTH)/base/base.gyp:base', | 111 '<(DEPTH)/base/base.gyp:base', |
113 '<(DEPTH)/crypto/crypto.gyp:crypto', | 112 '<(DEPTH)/crypto/crypto.gyp:crypto', |
114 '<(DEPTH)/net/net.gyp:net', | 113 '<(DEPTH)/net/net.gyp:net', |
115 '<(DEPTH)/skia/skia.gyp:skia', | 114 '<(DEPTH)/skia/skia.gyp:skia', |
| 115 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen', |
116 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 116 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
117 '<(DEPTH)/ui/ui.gyp:ui', | 117 '<(DEPTH)/ui/ui.gyp:ui', |
118 'glue', | 118 'glue', |
119 'user_agent', | 119 'user_agent', |
120 'webkit_support_gfx', | 120 'webkit_support_gfx', |
121 ], | 121 ], |
122 'export_dependent_settings': [ | 122 'export_dependent_settings': [ |
123 '<(DEPTH)/base/base.gyp:base', | 123 '<(DEPTH)/base/base.gyp:base', |
124 ], | 124 ], |
125 'sources': [ | 125 'sources': [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 '<(DEPTH)', | 181 '<(DEPTH)', |
182 ], | 182 ], |
183 'conditions': [ | 183 'conditions': [ |
184 ['OS=="android"', { | 184 ['OS=="android"', { |
185 'toolsets': ['target', 'host'], | 185 'toolsets': ['target', 'host'], |
186 }], | 186 }], |
187 ], | 187 ], |
188 }, | 188 }, |
189 ], | 189 ], |
190 } | 190 } |
OLD | NEW |