Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 192 '../browser/guest_view/web_view/web_view_media_access_apitest.cc', | 192 '../browser/guest_view/web_view/web_view_media_access_apitest.cc', |
| 193 'browser/shell_browsertest.cc', | 193 'browser/shell_browsertest.cc', |
| 194 'test/shell_apitest.cc', | 194 'test/shell_apitest.cc', |
| 195 'test/shell_apitest.h', | 195 'test/shell_apitest.h', |
| 196 'test/shell_test.cc', | 196 'test/shell_test.cc', |
| 197 'test/shell_test.h', | 197 'test/shell_test.h', |
| 198 'test/shell_test_launcher_delegate.cc', | 198 'test/shell_test_launcher_delegate.cc', |
| 199 'test/shell_test_launcher_delegate.h', | 199 'test/shell_test_launcher_delegate.h', |
| 200 'test/shell_tests_main.cc', | 200 'test/shell_tests_main.cc', |
| 201 ], | 201 ], |
| 202 'conditions': [ | |
| 203 ['OS=="win"', { | |
|
Yoyo Zhou
2014/10/10 21:01:49
You can merge this with an "and" (Python syntax ap
lfg
2014/10/10 21:17:14
Done.
| |
| 204 'conditions': [ | |
| 205 ['win_use_allocator_shim==1', { | |
| 206 'dependencies': [ | |
| 207 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
| 208 ], | |
| 209 }], | |
| 210 ], | |
| 211 }], | |
| 212 ], | |
| 202 }, | 213 }, |
| 203 { | 214 { |
| 204 'target_name': 'app_shell_unittests', | 215 'target_name': 'app_shell_unittests', |
| 205 'type': 'executable', | 216 'type': 'executable', |
| 206 'dependencies': [ | 217 'dependencies': [ |
| 207 'app_shell_lib', | 218 'app_shell_lib', |
| 208 '<(DEPTH)/base/base.gyp:base', | 219 '<(DEPTH)/base/base.gyp:base', |
| 209 '<(DEPTH)/base/base.gyp:test_support_base', | 220 '<(DEPTH)/base/base.gyp:test_support_base', |
| 210 '<(DEPTH)/content/content.gyp:content_app_both', | 221 '<(DEPTH)/content/content.gyp:content_app_both', |
| 211 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 222 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 266 '<@(_outputs)', | 277 '<@(_outputs)', |
| 267 ], | 278 ], |
| 268 'includes': [ | 279 'includes': [ |
| 269 '../../build/util/version.gypi', | 280 '../../build/util/version.gypi', |
| 270 ], | 281 ], |
| 271 }, | 282 }, |
| 272 ], | 283 ], |
| 273 }, | 284 }, |
| 274 ], # targets | 285 ], # targets |
| 275 } | 286 } |
| OLD | NEW |