OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'All', | 8 'target_name': 'All', |
9 'type': 'none', | 9 'type': 'none', |
10 'xcode_create_dependents_test_runner': 1, | 10 'xcode_create_dependents_test_runner': 1, |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
362 'conditions': [ | 362 'conditions': [ |
363 ['OS!="ios"', { | 363 ['OS!="ios"', { |
364 'targets': [ | 364 'targets': [ |
365 { | 365 { |
366 'target_name': 'all_webkit', | 366 'target_name': 'all_webkit', |
367 'type': 'none', | 367 'type': 'none', |
368 'dependencies': [ | 368 'dependencies': [ |
369 '../third_party/WebKit/public/all.gyp:all_blink', | 369 '../third_party/WebKit/public/all.gyp:all_blink', |
370 '../content/content_shell_and_tests.gyp:content_shell', | 370 '../content/content_shell_and_tests.gyp:content_shell', |
371 ], | 371 ], |
372 'conditions': [ | |
373 ['OS!="win"', { | |
Dirk Pranke
2013/10/30 19:19:57
Nit: I would probably flip this conditional, but i
| |
374 'dependencies': [ | |
375 '../breakpad/breakpad.gyp:dump_syms', | |
376 '../breakpad/breakpad.gyp:minidump_stackwalk', | |
Nico
2013/11/27 01:06:30
This isn't correct. dump_syms only exists if OS is
jochen (gone - plz use gerrit)
2013/11/27 09:23:28
all_webkit is defined within a OS!="ios" block, so
| |
377 ], | |
378 }, { # OS=="win" | |
379 'dependencies': [ | |
380 '../content/content_shell_and_tests.gyp:content_shell_crash_serv ice', | |
381 ], | |
382 }], | |
383 ], | |
372 }, # target_name: all_webkit | 384 }, # target_name: all_webkit |
373 { | 385 { |
374 'target_name': 'chromium_builder_nacl_win_integration', | 386 'target_name': 'chromium_builder_nacl_win_integration', |
375 'type': 'none', | 387 'type': 'none', |
376 'dependencies': [ | 388 'dependencies': [ |
377 'chromium_builder_qa', # needed for pyauto | 389 'chromium_builder_qa', # needed for pyauto |
378 'chromium_builder_tests', | 390 'chromium_builder_tests', |
379 ], | 391 ], |
380 }, # target_name: chromium_builder_nacl_win_integration | 392 }, # target_name: chromium_builder_nacl_win_integration |
381 { | 393 { |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1006 '../chrome/chrome.gyp:interactive_ui_tests_run', | 1018 '../chrome/chrome.gyp:interactive_ui_tests_run', |
1007 '../chrome/chrome.gyp:sync_integration_tests_run', | 1019 '../chrome/chrome.gyp:sync_integration_tests_run', |
1008 '../chrome/chrome.gyp:unit_tests_run', | 1020 '../chrome/chrome.gyp:unit_tests_run', |
1009 '../net/net.gyp:net_unittests_run', | 1021 '../net/net.gyp:net_unittests_run', |
1010 ], | 1022 ], |
1011 }, # target_name: chromium_swarm_tests | 1023 }, # target_name: chromium_swarm_tests |
1012 ], | 1024 ], |
1013 }], | 1025 }], |
1014 ], # conditions | 1026 ], # conditions |
1015 } | 1027 } |
OLD | NEW |