OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables' : { | 5 'variables' : { |
6 # Variables for js2gtest rules | 6 # Variables for js2gtest rules |
7 'gypv8sh': '../tools/gypv8sh.py', | 7 'gypv8sh': '../tools/gypv8sh.py', |
8 'js2gtest': 'test/base/js2gtest.js', | 8 'js2gtest': 'test/base/js2gtest.js', |
9 'js2gtest_out_dir': '<(SHARED_INTERMEDIATE_DIR)/js2gtest', | 9 'js2gtest_out_dir': '<(SHARED_INTERMEDIATE_DIR)/js2gtest', |
10 'mock_js': 'third_party/mock4js/mock4js.js', | 10 'mock_js': 'third_party/mock4js/mock4js.js', |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 ['toolkit_uses_gtk == 1 or chromeos==1 or (OS=="linux" and use_aura==1)'
, { | 265 ['toolkit_uses_gtk == 1 or chromeos==1 or (OS=="linux" and use_aura==1)'
, { |
266 'dependencies': [ | 266 'dependencies': [ |
267 '../build/linux/system.gyp:ssl', | 267 '../build/linux/system.gyp:ssl', |
268 ], | 268 ], |
269 }], | 269 }], |
270 ['OS=="win"', { | 270 ['OS=="win"', { |
271 'include_dirs': [ | 271 'include_dirs': [ |
272 '<(DEPTH)/third_party/wtl/include', | 272 '<(DEPTH)/third_party/wtl/include', |
273 ], | 273 ], |
274 }], | 274 }], |
| 275 ['OS=="win" and use_aura==1', { |
| 276 'sources/': [ |
| 277 ['exclude', 'test/base/ui_test_utils_win.cc'], |
| 278 ], |
| 279 }], |
275 ], | 280 ], |
276 }, | 281 }, |
277 { | 282 { |
278 'target_name': 'test_support_ui', | 283 'target_name': 'test_support_ui', |
279 'type': 'static_library', | 284 'type': 'static_library', |
280 'dependencies': [ | 285 'dependencies': [ |
281 'chrome_resources.gyp:chrome_resources', | 286 'chrome_resources.gyp:chrome_resources', |
282 'chrome_resources.gyp:chrome_strings', | 287 'chrome_resources.gyp:chrome_strings', |
283 'chrome_resources.gyp:theme_resources', | 288 'chrome_resources.gyp:theme_resources', |
284 'test_support_common', | 289 'test_support_common', |
(...skipping 3962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4247 # Use outputs of this action as inputs for the main target build. | 4252 # Use outputs of this action as inputs for the main target build. |
4248 # Seems as a misnomer but makes this happy on Linux (scons). | 4253 # Seems as a misnomer but makes this happy on Linux (scons). |
4249 'process_outputs_as_sources': 1, | 4254 'process_outputs_as_sources': 1, |
4250 }, | 4255 }, |
4251 ], # 'actions' | 4256 ], # 'actions' |
4252 }, | 4257 }, |
4253 ] | 4258 ] |
4254 }], # 'coverage!=0' | 4259 }], # 'coverage!=0' |
4255 ], # 'conditions' | 4260 ], # 'conditions' |
4256 } | 4261 } |
OLD | NEW |