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', |
29 ], | 35 ], |
30 'conditions': [ | 36 'conditions': [ |
31 ['toolkit_uses_gtk == 1', { | 37 ['toolkit_uses_gtk == 1', { |
32 'dependencies': [ | 38 'dependencies': [ |
33 '<(DEPTH)/build/linux/system.gyp:gtk', | 39 '<(DEPTH)/build/linux/system.gyp:gtk', |
34 ], | 40 ], |
35 'sources/': [['exclude', '_x11\\.cc$']], | 41 'sources/': [['exclude', '_x11\\.cc$']], |
36 }], | 42 }], |
37 ['OS!="mac"', { | 43 ['OS!="mac"', { |
38 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 44 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
(...skipping 11 matching lines...) Expand all Loading... |
50 'msvs_disabled_warnings': [ 4800, 4267 ], | 56 'msvs_disabled_warnings': [ 4800, 4267 ], |
51 'sources/': [['exclude', '_posix\\.cc$']], | 57 'sources/': [['exclude', '_posix\\.cc$']], |
52 'include_dirs': [ | 58 'include_dirs': [ |
53 '<(DEPTH)/third_party/wtl/include', | 59 '<(DEPTH)/third_party/wtl/include', |
54 ], | 60 ], |
55 }], | 61 }], |
56 ], | 62 ], |
57 }, | 63 }, |
58 ], | 64 ], |
59 } | 65 } |
OLD | NEW |