Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(838)

Side by Side Diff: build/all.gyp

Issue 135973007: Start building IPC fuzzer again, except when component=="shared_library". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ['enable_ipc_fuzzer==1 and OS=="linux" and component!="shared_librar y"', {
671 'dependencies': [
672 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*',
673 ],
674 }],
670 ['internal_filter_fuzzer==1', { 675 ['internal_filter_fuzzer==1', {
671 'dependencies': [ 676 'dependencies': [
672 '../skia/tools/clusterfuzz-data/fuzzers/filter_fuzzer/filter_fuz zer.gyp:filter_fuzzer', 677 '../skia/tools/clusterfuzz-data/fuzzers/filter_fuzzer/filter_fuz zer.gyp:filter_fuzzer',
673 ], 678 ],
674 }], # internal_filter_fuzzer 679 }], # internal_filter_fuzzer
675 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', { 680 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', {
676 'dependencies': [ 681 'dependencies': [
677 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy', 682 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy',
678 '../content/content_shell_and_tests.gyp:content_shell_syzyasan', 683 '../content/content_shell_and_tests.gyp:content_shell_syzyasan',
679 ], 684 ],
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 '../chrome/chrome.gyp:interactive_ui_tests_run', 1206 '../chrome/chrome.gyp:interactive_ui_tests_run',
1202 '../chrome/chrome.gyp:sync_integration_tests_run', 1207 '../chrome/chrome.gyp:sync_integration_tests_run',
1203 '../chrome/chrome.gyp:unit_tests_run', 1208 '../chrome/chrome.gyp:unit_tests_run',
1204 '../net/net.gyp:net_unittests_run', 1209 '../net/net.gyp:net_unittests_run',
1205 ], 1210 ],
1206 }, # target_name: chromium_swarm_tests 1211 }, # target_name: chromium_swarm_tests
1207 ], 1212 ],
1208 }], 1213 }],
1209 ], # conditions 1214 ], # conditions
1210 } 1215 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698