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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'glue_common', | 8 'target_name': 'glue_common', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
11 'defines': [ | 11 'defines': [ |
12 'WEBKIT_COMMON_IMPLEMENTATION', | 12 'WEBKIT_COMMON_IMPLEMENTATION', |
13 ], | 13 ], |
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)/net/net.gyp:net', | 18 '<(DEPTH)/net/net.gyp:net', |
19 '<(DEPTH)/skia/skia.gyp:skia', | 19 '<(DEPTH)/skia/skia.gyp:skia', |
20 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 20 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
21 '<(DEPTH)/ui/ui.gyp:ui', | 21 '<(DEPTH)/ui/ui.gyp:ui', |
22 '<(DEPTH)/ui/ui.gyp:ui_resources', | 22 '<(DEPTH)/ui/ui.gyp:ui_resources', |
23 '<(DEPTH)/url/url.gyp:url_lib', | 23 '<(DEPTH)/url/url.gyp:url_lib', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 '../common/webkit_common_export.h', | 26 '../common/webkit_common_export.h', |
27 '../common/webpreferences.cc', | 27 '../common/webpreferences.cc', |
28 '../common/webpreferences.h', | 28 '../common/webpreferences.h', |
29 'multipart_response_delegate.cc', | |
30 'multipart_response_delegate.h', | |
31 'weburlrequest_extradata_impl.cc', | |
32 'weburlrequest_extradata_impl.h', | |
33 'weburlresponse_extradata_impl.cc', | |
34 'weburlresponse_extradata_impl.h', | |
35 ], | 29 ], |
36 'conditions': [ | 30 'conditions': [ |
37 ['toolkit_uses_gtk == 1', { | 31 ['toolkit_uses_gtk == 1', { |
38 'dependencies': [ | 32 'dependencies': [ |
39 '<(DEPTH)/build/linux/system.gyp:gtk', | 33 '<(DEPTH)/build/linux/system.gyp:gtk', |
40 ], | 34 ], |
41 'sources/': [['exclude', '_x11\\.cc$']], | 35 'sources/': [['exclude', '_x11\\.cc$']], |
42 }], | 36 }], |
43 ['OS!="mac"', { | 37 ['OS!="mac"', { |
44 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 38 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
(...skipping 11 matching lines...) Expand all Loading... |
56 'msvs_disabled_warnings': [ 4800, 4267 ], | 50 'msvs_disabled_warnings': [ 4800, 4267 ], |
57 'sources/': [['exclude', '_posix\\.cc$']], | 51 'sources/': [['exclude', '_posix\\.cc$']], |
58 'include_dirs': [ | 52 'include_dirs': [ |
59 '<(DEPTH)/third_party/wtl/include', | 53 '<(DEPTH)/third_party/wtl/include', |
60 ], | 54 ], |
61 }], | 55 }], |
62 ], | 56 ], |
63 }, | 57 }, |
64 ], | 58 ], |
65 } | 59 } |
OLD | NEW |