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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 1413863003: mac: In static library builds, link against a static libc++.a (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: haaaaack Created 5 years, 1 month 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 | « build/common.gypi ('k') | chrome/tools/build/mac/verify_order » ('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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 # GN version: //chrome:chrome_dll 9 # GN version: //chrome:chrome_dll
10 'target_name': 'chrome_dll', 10 'target_name': 'chrome_dll',
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'xcode_settings': { 297 'xcode_settings': {
298 # Define the order of symbols within the framework. This 298 # Define the order of symbols within the framework. This
299 # sets -order_file. 299 # sets -order_file.
300 'ORDER_FILE': 'app/framework.order', 300 'ORDER_FILE': 'app/framework.order',
301 }, 301 },
302 'include_dirs': [ 302 'include_dirs': [
303 '<(grit_out_dir)', 303 '<(grit_out_dir)',
304 ], 304 ],
305 }], 305 }],
306 # This step currently fails when using LTO. TODO(pcc): Re-enable. 306 # This step currently fails when using LTO. TODO(pcc): Re-enable.
307 ['OS=="mac" and use_lto==0', { 307 ['OS=="mac" and use_lto==0 and component=="static_library" and asan= =0', {
308 'postbuilds': [ 308 'postbuilds': [
309 { 309 {
310 # This step causes an error to be raised if the .order file 310 # This step causes an error to be raised if the .order file
311 # does not account for all global text symbols. It 311 # does not account for all global text symbols. It
312 # validates the completeness of the .order file. 312 # validates the completeness of the .order file.
313 'postbuild_name': 'Verify global text symbol order', 313 'postbuild_name': 'Verify global text symbol order',
314 'variables': { 314 'variables': {
315 'verify_order_path': 'tools/build/mac/verify_order', 315 'verify_order_path': 'tools/build/mac/verify_order',
316 }, 316 },
317 'action': [ 317 'action': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 'dependencies': [ 379 'dependencies': [
380 '../pdf/pdf.gyp:pdf', 380 '../pdf/pdf.gyp:pdf',
381 ], 381 ],
382 }], 382 }],
383 ], 383 ],
384 }, # target chrome_child_dll 384 }, # target chrome_child_dll
385 ], 385 ],
386 }], 386 }],
387 ], 387 ],
388 } 388 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/tools/build/mac/verify_order » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698