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

Side by Side Diff: build/all.gyp

Issue 25492004: Adds Windows support to the chromium_builder_asan target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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 | 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 '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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 ], 477 ],
478 }, # target_name: chromium_builder_chromedriver 478 }, # target_name: chromium_builder_chromedriver
479 { 479 {
480 'target_name': 'chromium_builder_asan', 480 'target_name': 'chromium_builder_asan',
481 'type': 'none', 481 'type': 'none',
482 'dependencies': [ 482 'dependencies': [
483 '../chrome/chrome.gyp:chrome', 483 '../chrome/chrome.gyp:chrome',
484 484
485 # We refer to content_shell directly rather than all_webkit 485 # We refer to content_shell directly rather than all_webkit
486 # because we don't want the _unittests binaries. 486 # because we don't want the _unittests binaries.
487 '../content/content.gyp:content_browsertests',
488 '../content/content.gyp:content_shell', 487 '../content/content.gyp:content_shell',
489 488 ],
490 '../net/net.gyp:dns_fuzz_stub', 489 'conditions': [
491 ], 490 ['OS!="win"', {
492 }, 491 'dependencies': [
492 '../content/content.gyp:content_browsertests',
493 '../net/net.gyp:dns_fuzz_stub',
494 ],
495 }],
496 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', {
497 'dependencies': [
498 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy',
499 '../content/content.gyp:content_shell_syzyasan',
500 ],
501 'conditions': [
502 ['chrome_multiple_dll==1', {
503 'dependencies': [
504 '../chrome/chrome_syzygy.gyp:chrome_child_dll_syzygy',
505 ],
506 }],
507 ],
508 }],
509 ],
510 },
493 ], # targets 511 ], # targets
494 }], 512 }],
495 ['OS=="mac"', { 513 ['OS=="mac"', {
496 'targets': [ 514 'targets': [
497 { 515 {
498 # Target to build everything plus the dmg. We don't put the dmg 516 # Target to build everything plus the dmg. We don't put the dmg
499 # in the All target because developers really don't need it. 517 # in the All target because developers really don't need it.
500 'target_name': 'all_and_dmg', 518 'target_name': 'all_and_dmg',
501 'type': 'none', 519 'type': 'none',
502 'dependencies': [ 520 'dependencies': [
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 '../chrome/chrome.gyp:interactive_ui_tests_run', 933 '../chrome/chrome.gyp:interactive_ui_tests_run',
916 '../chrome/chrome.gyp:sync_integration_tests_run', 934 '../chrome/chrome.gyp:sync_integration_tests_run',
917 '../chrome/chrome.gyp:unit_tests_run', 935 '../chrome/chrome.gyp:unit_tests_run',
918 '../net/net.gyp:net_unittests_run', 936 '../net/net.gyp:net_unittests_run',
919 ], 937 ],
920 }, # target_name: chromium_swarm_tests 938 }, # target_name: chromium_swarm_tests
921 ], 939 ],
922 }], 940 }],
923 ], # conditions 941 ], # conditions
924 } 942 }
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