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': [ |
(...skipping 25 matching lines...) Expand all Loading... |
36 '<(INTERMEDIATE_DIR)', | 36 '<(INTERMEDIATE_DIR)', |
37 '<(SHARED_INTERMEDIATE_DIR)/ui', | 37 '<(SHARED_INTERMEDIATE_DIR)/ui', |
38 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 38 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
39 ], | 39 ], |
40 | 40 |
41 'sources': [ | 41 'sources': [ |
42 'data_element.cc', | 42 'data_element.cc', |
43 'data_element.h', | 43 'data_element.h', |
44 'resource_devtools_info.cc', | 44 'resource_devtools_info.cc', |
45 'resource_devtools_info.h', | 45 'resource_devtools_info.h', |
46 'resource_response_info.cc', | |
47 'resource_response_info.h', | |
48 'resource_type.cc', | 46 'resource_type.cc', |
49 'resource_type.h', | 47 'resource_type.h', |
50 'webkit_common_export.h', | 48 'webkit_common_export.h', |
51 'webpreferences.cc', | 49 'webpreferences.cc', |
52 'webpreferences.h', | 50 'webpreferences.h', |
53 ], | 51 ], |
54 | 52 |
55 'conditions': [ | 53 'conditions': [ |
56 ['use_aura==1 and use_x11==1', { | 54 ['use_aura==1 and use_x11==1', { |
57 'dependencies': [ | 55 'dependencies': [ |
58 '<(DEPTH)/build/linux/system.gyp:xcursor', | 56 '<(DEPTH)/build/linux/system.gyp:xcursor', |
59 ], | 57 ], |
60 }], | 58 }], |
61 ['OS=="mac"', { | 59 ['OS=="mac"', { |
62 'link_settings': { | 60 'link_settings': { |
63 'libraries': [ | 61 'libraries': [ |
64 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 62 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
65 ], | 63 ], |
66 }, | 64 }, |
67 }], | 65 }], |
68 ['OS=="win"', { | 66 ['OS=="win"', { |
69 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
70 'msvs_disabled_warnings': [ 4800, 4267 ], | 68 'msvs_disabled_warnings': [ 4800, 4267 ], |
71 }], | 69 }], |
72 ], | 70 ], |
73 }, | 71 }, |
74 ], | 72 ], |
75 } | 73 } |
OLD | NEW |