Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(986)

Side by Side Diff: chrome/chrome.gyp

Issue 522743003: Revert of Reland https://codereview.chromium.org/298333007/: Enable mac_strip_release under ASan on OSX. Remo… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/app/app_asan.saves ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/app/app_asan.saves ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698