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 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', | |
Mark Mentovai
2011/09/02 13:37:21
Ditto.
Alexander Potapenko
2011/09/02 14:33:42
Done.
| |
85 }, | |
86 }], | |
82 ], | 87 ], |
83 }], | 88 }], |
84 ], | 89 ], |
85 }, | 90 }, |
86 'targets': [ | 91 'targets': [ |
87 { | 92 { |
88 'target_name': 'chrome', | 93 'target_name': 'chrome', |
89 'type': 'executable', | 94 'type': 'executable', |
90 'mac_bundle': 1, | 95 'mac_bundle': 1, |
91 'variables': { | 96 'variables': { |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
538 'configurations': { | 543 'configurations': { |
539 'Common_Base': { | 544 'Common_Base': { |
540 'msvs_target_platform': 'x64', | 545 'msvs_target_platform': 'x64', |
541 }, | 546 }, |
542 }, | 547 }, |
543 }, | 548 }, |
544 ], | 549 ], |
545 }], | 550 }], |
546 ], | 551 ], |
547 } | 552 } |
OLD | NEW |