OLD | NEW |
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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 'variables': { | 255 'variables': { |
256 # A real .dSYM is needed for dump_syms to operate on. | 256 # A real .dSYM is needed for dump_syms to operate on. |
257 'mac_real_dsym': 1, | 257 'mac_real_dsym': 1, |
258 }, | 258 }, |
259 'xcode_settings': { | 259 'xcode_settings': { |
260 # With mac_real_dsym set, strip_from_xcode won't be used. | 260 # With mac_real_dsym set, strip_from_xcode won't be used. |
261 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. | 261 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. |
262 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', | 262 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', |
263 }, | 263 }, |
264 }], | 264 }], |
| 265 ['asan==1', { |
| 266 'xcode_settings': { |
| 267 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. |
| 268 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', |
| 269 }, |
| 270 }], |
265 ['component=="shared_library"', { | 271 ['component=="shared_library"', { |
266 'xcode_settings': { | 272 'xcode_settings': { |
267 'LD_RUNPATH_SEARCH_PATHS': [ | 273 'LD_RUNPATH_SEARCH_PATHS': [ |
268 # Get back from Chromium.app/Contents/Versions/V/ | 274 # Get back from Chromium.app/Contents/Versions/V/ |
269 # Helper.app/Contents/MacOS | 275 # Helper.app/Contents/MacOS |
270 '@loader_path/../../../../../../..', | 276 '@loader_path/../../../../../../..', |
271 ], | 277 ], |
272 }, | 278 }, |
273 }], | 279 }], |
274 ], | 280 ], |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 'service/service_utility_process_host.cc', | 780 'service/service_utility_process_host.cc', |
775 'service/service_utility_process_host.h', | 781 'service/service_utility_process_host.h', |
776 ], | 782 ], |
777 }], | 783 }], |
778 ], | 784 ], |
779 }, | 785 }, |
780 ], | 786 ], |
781 }], | 787 }], |
782 ], # 'conditions' | 788 ], # 'conditions' |
783 } | 789 } |
OLD | NEW |