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

Side by Side Diff: build/all.gyp

Issue 167773002: Make SyzyAsan depend on 'syzyasan' GYP flag instead of 'asan==1 and OS=="win"' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | build/common.gypi » ('j') | 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'conditions': [ 320 'conditions': [
321 # remoting_host_installation uses lots of non-trivial GYP that tend 321 # remoting_host_installation uses lots of non-trivial GYP that tend
322 # to break because of differences between ninja and msbuild. Make 322 # to break because of differences between ninja and msbuild. Make
323 # sure this target is built by the builders on the main waterfall. 323 # sure this target is built by the builders on the main waterfall.
324 # See http://crbug.com/180600. 324 # See http://crbug.com/180600.
325 ['wix_exists == "True" and sas_dll_exists == "True"', { 325 ['wix_exists == "True" and sas_dll_exists == "True"', {
326 'dependencies': [ 326 'dependencies': [
327 '../remoting/remoting.gyp:remoting_host_installation', 327 '../remoting/remoting.gyp:remoting_host_installation',
328 ], 328 ],
329 }], 329 }],
330 ['asan==1', { 330 ['syzyasan==1', {
331 'variables': { 331 'variables': {
332 # Disable incremental linking for all modules. 332 # Disable incremental linking for all modules.
333 # 0: inherit, 1: disabled, 2: enabled. 333 # 0: inherit, 1: disabled, 2: enabled.
334 'msvs_debug_link_incremental': '1', 334 'msvs_debug_link_incremental': '1',
335 'msvs_large_module_debug_link_mode': '1', 335 'msvs_large_module_debug_link_mode': '1',
336 # Disable RTC. Syzygy explicitly doesn't support RTC 336 # Disable RTC. Syzygy explicitly doesn't support RTC
337 # instrumented binaries for now. 337 # instrumented binaries for now.
338 'win_debug_RuntimeChecks': '0', 338 'win_debug_RuntimeChecks': '0',
339 }, 339 },
340 'defines': [ 340 'defines': [
341 # Disable iterator debugging (huge speed boost). 341 # Disable iterator debugging (huge speed boost).
342 '_HAS_ITERATOR_DEBUGGING=0', 342 '_HAS_ITERATOR_DEBUGGING=0',
343 ], 343 ],
344 'msvs_settings': { 344 'msvs_settings': {
345 'VCLinkerTool': { 345 'VCLinkerTool': {
346 # Enable profile information (necessary for asan 346 # Enable profile information (necessary for SyzyAsan
347 # instrumentation). This is incompatible with incremental 347 # instrumentation). This is incompatible with incremental
348 # linking. 348 # linking.
349 'Profile': 'true', 349 'Profile': 'true',
350 }, 350 },
351 } 351 }
352 }], 352 }],
353 ], 353 ],
354 }], 354 }],
355 ['OS=="linux"', { 355 ['OS=="linux"', {
356 'dependencies': [ 356 'dependencies': [
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1232 '../chrome/chrome.gyp:interactive_ui_tests_run', 1232 '../chrome/chrome.gyp:interactive_ui_tests_run',
1233 '../chrome/chrome.gyp:sync_integration_tests_run', 1233 '../chrome/chrome.gyp:sync_integration_tests_run',
1234 '../chrome/chrome.gyp:unit_tests_run', 1234 '../chrome/chrome.gyp:unit_tests_run',
1235 '../net/net.gyp:net_unittests_run', 1235 '../net/net.gyp:net_unittests_run',
1236 ], 1236 ],
1237 }, # target_name: chromium_swarm_tests 1237 }, # target_name: chromium_swarm_tests
1238 ], 1238 ],
1239 }], 1239 }],
1240 ], # conditions 1240 ], # conditions
1241 } 1241 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698