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 'variables': { | 6 'variables': { |
7 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
10 }, | 10 }, |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 # because we don't want the _unittests binaries. | 660 # because we don't want the _unittests binaries. |
661 '../content/content_shell_and_tests.gyp:content_shell', | 661 '../content/content_shell_and_tests.gyp:content_shell', |
662 ], | 662 ], |
663 'conditions': [ | 663 'conditions': [ |
664 ['OS!="win"', { | 664 ['OS!="win"', { |
665 'dependencies': [ | 665 'dependencies': [ |
666 '../net/net.gyp:dns_fuzz_stub', | 666 '../net/net.gyp:dns_fuzz_stub', |
667 '../skia/skia.gyp:filter_fuzz_stub', | 667 '../skia/skia.gyp:filter_fuzz_stub', |
668 ], | 668 ], |
669 }], | 669 }], |
670 ['OS=="linux" and enable_ipc_fuzzer==1', { | |
671 'dependencies': [ | |
672 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | |
673 ], | |
674 }], | |
675 ['internal_filter_fuzzer==1', { | 670 ['internal_filter_fuzzer==1', { |
676 'dependencies': [ | 671 'dependencies': [ |
677 '../skia/tools/clusterfuzz-data/fuzzers/filter_fuzzer/filter_fuz
zer.gyp:filter_fuzzer', | 672 '../skia/tools/clusterfuzz-data/fuzzers/filter_fuzzer/filter_fuz
zer.gyp:filter_fuzzer', |
678 ], | 673 ], |
679 }], # internal_filter_fuzzer | 674 }], # internal_filter_fuzzer |
680 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', { | 675 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', { |
681 'dependencies': [ | 676 'dependencies': [ |
682 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy', | 677 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy', |
683 '../content/content_shell_and_tests.gyp:content_shell_syzyasan', | 678 '../content/content_shell_and_tests.gyp:content_shell_syzyasan', |
684 ], | 679 ], |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 '../chrome/chrome.gyp:interactive_ui_tests_run', | 1201 '../chrome/chrome.gyp:interactive_ui_tests_run', |
1207 '../chrome/chrome.gyp:sync_integration_tests_run', | 1202 '../chrome/chrome.gyp:sync_integration_tests_run', |
1208 '../chrome/chrome.gyp:unit_tests_run', | 1203 '../chrome/chrome.gyp:unit_tests_run', |
1209 '../net/net.gyp:net_unittests_run', | 1204 '../net/net.gyp:net_unittests_run', |
1210 ], | 1205 ], |
1211 }, # target_name: chromium_swarm_tests | 1206 }, # target_name: chromium_swarm_tests |
1212 ], | 1207 ], |
1213 }], | 1208 }], |
1214 ], # conditions | 1209 ], # conditions |
1215 } | 1210 } |
OLD | NEW |