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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'variables': { | 235 'variables': { |
236 # A real .dSYM is needed for dump_syms to operate on. | 236 # A real .dSYM is needed for dump_syms to operate on. |
237 'mac_real_dsym': 1, | 237 'mac_real_dsym': 1, |
238 }, | 238 }, |
239 'xcode_settings': { | 239 'xcode_settings': { |
240 # With mac_real_dsym set, strip_from_xcode won't be used. | 240 # With mac_real_dsym set, strip_from_xcode won't be used. |
241 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. | 241 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. |
242 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', | 242 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', |
243 }, | 243 }, |
244 }], | 244 }], |
| 245 ['asan==1', { |
| 246 'xcode_settings': { |
| 247 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. |
| 248 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', |
| 249 }, |
| 250 }], |
245 ['component=="shared_library"', { | 251 ['component=="shared_library"', { |
246 'xcode_settings': { | 252 'xcode_settings': { |
247 'LD_RUNPATH_SEARCH_PATHS': [ | 253 'LD_RUNPATH_SEARCH_PATHS': [ |
248 # Get back from Chromium.app/Contents/Versions/V/ | 254 # Get back from Chromium.app/Contents/Versions/V/ |
249 # Helper.app/Contents/MacOS | 255 # Helper.app/Contents/MacOS |
250 '@loader_path/../../../../../../..', | 256 '@loader_path/../../../../../../..', |
251 ], | 257 ], |
252 }, | 258 }, |
253 }], | 259 }], |
254 ], | 260 ], |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 'sources': [ | 772 'sources': [ |
767 'service/cloud_print/print_system_dummy.cc', | 773 'service/cloud_print/print_system_dummy.cc', |
768 ], | 774 ], |
769 }], | 775 }], |
770 ], | 776 ], |
771 }, | 777 }, |
772 ], | 778 ], |
773 }], | 779 }], |
774 ], # 'conditions' | 780 ], # 'conditions' |
775 } | 781 } |
OLD | NEW |