OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 ], | 72 ], |
73 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], | 73 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], |
74 'message': 'Copy first run complete sentinel file', | 74 'message': 'Copy first run complete sentinel file', |
75 }, | 75 }, |
76 ], | 76 ], |
77 }, { # 'OS!="win" | 77 }, { # 'OS!="win" |
78 'sources!': [ | 78 'sources!': [ |
79 'app/client_util.cc', | 79 'app/client_util.cc', |
80 ] | 80 ] |
81 }], | 81 }], |
| 82 ['OS=="mac" and asan==1', { |
| 83 'xcode_settings': { |
| 84 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. |
| 85 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', |
| 86 }, |
| 87 }], |
82 ], | 88 ], |
83 }], | 89 }], |
84 ], | 90 ], |
85 }, | 91 }, |
86 'targets': [ | 92 'targets': [ |
87 { | 93 { |
88 'target_name': 'chrome', | 94 'target_name': 'chrome', |
89 'type': 'executable', | 95 'type': 'executable', |
90 'mac_bundle': 1, | 96 'mac_bundle': 1, |
91 'variables': { | 97 'variables': { |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 'configurations': { | 544 'configurations': { |
539 'Common_Base': { | 545 'Common_Base': { |
540 'msvs_target_platform': 'x64', | 546 'msvs_target_platform': 'x64', |
541 }, | 547 }, |
542 }, | 548 }, |
543 }, | 549 }, |
544 ], | 550 ], |
545 }], | 551 }], |
546 ], | 552 ], |
547 } | 553 } |
OLD | NEW |