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 }], | |
250 ['component=="shared_library"', { | 244 ['component=="shared_library"', { |
251 'xcode_settings': { | 245 'xcode_settings': { |
252 'LD_RUNPATH_SEARCH_PATHS': [ | 246 'LD_RUNPATH_SEARCH_PATHS': [ |
253 # Get back from Chromium.app/Contents/Versions/V/ | 247 # Get back from Chromium.app/Contents/Versions/V/ |
254 # Helper.app/Contents/MacOS | 248 # Helper.app/Contents/MacOS |
255 '@loader_path/../../../../../../..', | 249 '@loader_path/../../../../../../..', |
256 ], | 250 ], |
257 }, | 251 }, |
258 }], | 252 }], |
259 ], | 253 ], |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'sources': [ | 846 'sources': [ |
853 'service/cloud_print/print_system_dummy.cc', | 847 'service/cloud_print/print_system_dummy.cc', |
854 ], | 848 ], |
855 }], | 849 }], |
856 ], | 850 ], |
857 }, | 851 }, |
858 ], | 852 ], |
859 }], | 853 }], |
860 ], # 'conditions' | 854 ], # 'conditions' |
861 } | 855 } |
OLD | NEW |