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

Side by Side Diff: gyp/common_conditions.gypi

Issue 1442103002: turn on libc++ for iOS (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # conditions used in both common.gypi and skia.gyp in chromium 6 # conditions used in both common.gypi and skia.gyp in chromium
7 # 7 #
8 { 8 {
9 'defines': [ 9 'defines': [
10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', 10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 }, 552 },
553 }, 553 },
554 'xcode_settings': { 554 'xcode_settings': {
555 'ARCHS': ['armv7'], 555 'ARCHS': ['armv7'],
556 'CODE_SIGNING_REQUIRED': 'NO', 556 'CODE_SIGNING_REQUIRED': 'NO',
557 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)', 557 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
558 'SDKROOT': 'iphoneos', 558 'SDKROOT': 'iphoneos',
559 'TARGETED_DEVICE_FAMILY': '1,2', 559 'TARGETED_DEVICE_FAMILY': '1,2',
560 'OTHER_CPLUSPLUSFLAGS': [ 560 'OTHER_CPLUSPLUSFLAGS': [
561 '-std=c++0x', 561 '-std=c++0x',
562 '-stdlib=libc++',
562 '-fvisibility=hidden', 563 '-fvisibility=hidden',
563 '-fvisibility-inlines-hidden', 564 '-fvisibility-inlines-hidden',
564 ], 565 ],
565 'GCC_THUMB_SUPPORT': 'NO', 566 'GCC_THUMB_SUPPORT': 'NO',
566 }, 567 },
567 }, 568 },
568 ], 569 ],
569 570
570 [ 'skia_os == "android"', 571 [ 'skia_os == "android"',
571 { 572 {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], 639 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'],
639 }, 640 },
640 }], 641 }],
641 642
642 ], # end 'conditions' 643 ], # end 'conditions'
643 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details 644 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
644 'xcode_settings': { 645 'xcode_settings': {
645 'SYMROOT': '<(DEPTH)/xcodebuild', 646 'SYMROOT': '<(DEPTH)/xcodebuild',
646 }, 647 },
647 } 648 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698