OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'web_ax_object_proxy.h', | 116 'web_ax_object_proxy.h', |
117 'web_frame_test_client.cc', | 117 'web_frame_test_client.cc', |
118 'web_frame_test_client.h', | 118 'web_frame_test_client.h', |
119 'web_frame_test_proxy.cc', | 119 'web_frame_test_proxy.cc', |
120 'web_frame_test_proxy.h', | 120 'web_frame_test_proxy.h', |
121 'web_task.cc', | 121 'web_task.cc', |
122 'web_task.h', | 122 'web_task.h', |
123 'web_test_delegate.h', | 123 'web_test_delegate.h', |
124 'web_test_interfaces.cc', | 124 'web_test_interfaces.cc', |
125 'web_test_interfaces.h', | 125 'web_test_interfaces.h', |
126 'web_test_proxy.cc', | |
127 'web_test_proxy.h', | |
128 'web_test_runner.h', | 126 'web_test_runner.h', |
129 'web_view_test_client.cc', | 127 'web_view_test_client.cc', |
130 'web_view_test_client.h', | 128 'web_view_test_client.h', |
| 129 'web_view_test_proxy.cc', |
| 130 'web_view_test_proxy.h', |
131 'web_widget_test_client.cc', | 131 'web_widget_test_client.cc', |
132 'web_widget_test_client.h', | 132 'web_widget_test_client.h', |
133 ], | 133 ], |
134 'msvs_settings': { | 134 'msvs_settings': { |
135 'VCLinkerTool': { | 135 'VCLinkerTool': { |
136 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 136 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
137 }, | 137 }, |
138 }, | 138 }, |
139 'conditions': [ | 139 'conditions': [ |
140 ['OS=="win"', { | 140 ['OS=="win"', { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 215 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
216 ], | 216 ], |
217 }, | 217 }, |
218 }], | 218 }], |
219 ], | 219 ], |
220 }, | 220 }, |
221 ], | 221 ], |
222 }], # OS=="mac" or OS=="win" | 222 }], # OS=="mac" or OS=="win" |
223 ] | 223 ] |
224 } | 224 } |
OLD | NEW |