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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 'variables': { | 234 'variables': { |
235 # A real .dSYM is needed for dump_syms to operate on. | 235 # A real .dSYM is needed for dump_syms to operate on. |
236 'mac_real_dsym': 1, | 236 'mac_real_dsym': 1, |
237 }, | 237 }, |
238 'xcode_settings': { | 238 'xcode_settings': { |
239 # With mac_real_dsym set, strip_from_xcode won't be used. | 239 # With mac_real_dsym set, strip_from_xcode won't be used. |
240 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. | 240 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. |
241 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', | 241 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', |
242 }, | 242 }, |
243 }], | 243 }], |
| 244 ['asan==1', { |
| 245 'xcode_settings': { |
| 246 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. |
| 247 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', |
| 248 }, |
| 249 }], |
244 ['component=="shared_library"', { | 250 ['component=="shared_library"', { |
245 'xcode_settings': { | 251 'xcode_settings': { |
246 'LD_RUNPATH_SEARCH_PATHS': [ | 252 'LD_RUNPATH_SEARCH_PATHS': [ |
247 # Get back from Chromium.app/Contents/Versions/V/ | 253 # Get back from Chromium.app/Contents/Versions/V/ |
248 # Helper.app/Contents/MacOS | 254 # Helper.app/Contents/MacOS |
249 '@loader_path/../../../../../../..', | 255 '@loader_path/../../../../../../..', |
250 ], | 256 ], |
251 }, | 257 }, |
252 }], | 258 }], |
253 ], | 259 ], |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 'sources': [ | 852 'sources': [ |
847 'service/cloud_print/print_system_dummy.cc', | 853 'service/cloud_print/print_system_dummy.cc', |
848 ], | 854 ], |
849 }], | 855 }], |
850 ], | 856 ], |
851 }, | 857 }, |
852 ], | 858 ], |
853 }], | 859 }], |
854 ], # 'conditions' | 860 ], # 'conditions' |
855 } | 861 } |
OLD | NEW |