OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'enable_wexit_time_destructors': 1, | 7 'enable_wexit_time_destructors': 1, |
8 'chromium_code': 1 | 8 'chromium_code': 1 |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'webkit_common', | 12 'target_name': 'webkit_common', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'defines': [ | 14 'defines': [ |
15 'WEBKIT_COMMON_IMPLEMENTATION', | 15 'WEBKIT_COMMON_IMPLEMENTATION', |
16 ], | 16 ], |
17 'dependencies': [ | 17 'dependencies': [ |
18 '<(DEPTH)/base/base.gyp:base', | 18 '<(DEPTH)/base/base.gyp:base', |
19 '<(DEPTH)/base/base.gyp:base_i18n', | 19 '<(DEPTH)/base/base.gyp:base_i18n', |
20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
21 '<(DEPTH)/net/net.gyp:net', | 21 '<(DEPTH)/net/net.gyp:net', |
22 '<(DEPTH)/skia/skia.gyp:skia', | 22 '<(DEPTH)/skia/skia.gyp:skia', |
| 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
23 '<(DEPTH)/ui/ui.gyp:ui', | 24 '<(DEPTH)/ui/ui.gyp:ui', |
24 '<(DEPTH)/ui/ui.gyp:ui_resources', | 25 '<(DEPTH)/ui/ui.gyp:ui_resources', |
25 '<(DEPTH)/url/url.gyp:url_lib', | 26 '<(DEPTH)/url/url.gyp:url_lib', |
26 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', | 27 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', |
27 ], | 28 ], |
28 | 29 |
29 'include_dirs': [ | 30 'include_dirs': [ |
30 '<(INTERMEDIATE_DIR)', | 31 '<(INTERMEDIATE_DIR)', |
31 '<(SHARED_INTERMEDIATE_DIR)/ui', | 32 '<(SHARED_INTERMEDIATE_DIR)/ui', |
32 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 33 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 'sources/': [['exclude', '_win\\.cc$']], | 96 'sources/': [['exclude', '_win\\.cc$']], |
96 }, { # else: OS=="win" | 97 }, { # else: OS=="win" |
97 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
98 'msvs_disabled_warnings': [ 4800, 4267 ], | 99 'msvs_disabled_warnings': [ 4800, 4267 ], |
99 'sources/': [['exclude', '_posix\\.cc$']], | 100 'sources/': [['exclude', '_posix\\.cc$']], |
100 }], | 101 }], |
101 ], | 102 ], |
102 }, | 103 }, |
103 ], | 104 ], |
104 } | 105 } |
OLD | NEW |