| 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 }], | |
| 251 ['component=="shared_library"', { | 245 ['component=="shared_library"', { |
| 252 'xcode_settings': { | 246 'xcode_settings': { |
| 253 'LD_RUNPATH_SEARCH_PATHS': [ | 247 'LD_RUNPATH_SEARCH_PATHS': [ |
| 254 # Get back from Chromium.app/Contents/Versions/V/ | 248 # Get back from Chromium.app/Contents/Versions/V/ |
| 255 # Helper.app/Contents/MacOS | 249 # Helper.app/Contents/MacOS |
| 256 '@loader_path/../../../../../../..', | 250 '@loader_path/../../../../../../..', |
| 257 ], | 251 ], |
| 258 }, | 252 }, |
| 259 }], | 253 }], |
| 260 ], | 254 ], |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 'sources': [ | 766 'sources': [ |
| 773 'service/cloud_print/print_system_dummy.cc', | 767 'service/cloud_print/print_system_dummy.cc', |
| 774 ], | 768 ], |
| 775 }], | 769 }], |
| 776 ], | 770 ], |
| 777 }, | 771 }, |
| 778 ], | 772 ], |
| 779 }], | 773 }], |
| 780 ], # 'conditions' | 774 ], # 'conditions' |
| 781 } | 775 } |
| OLD | NEW |