OLD | NEW |
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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 'Release': { | 539 'Release': { |
540 'xcode_settings': { | 540 'xcode_settings': { |
541 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', | 541 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', |
542 }, | 542 }, |
543 'defines': [ 'NDEBUG' ], | 543 'defines': [ 'NDEBUG' ], |
544 }, | 544 }, |
545 }, | 545 }, |
546 'xcode_settings': { | 546 'xcode_settings': { |
547 'ARCHS': ['armv7'], | 547 'ARCHS': ['armv7'], |
548 'CODE_SIGNING_REQUIRED': 'NO', | 548 'CODE_SIGNING_REQUIRED': 'NO', |
549 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '', | 549 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer: Google Develop
ment (3F4Y5873JF)', |
550 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)', | 550 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)', |
551 'SDKROOT': 'iphoneos', | 551 'SDKROOT': 'iphoneos', |
552 'TARGETED_DEVICE_FAMILY': '1,2', | 552 'TARGETED_DEVICE_FAMILY': '1,2', |
553 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offset
of | 553 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offset
of |
554 'OTHER_CPLUSPLUSFLAGS': [ | 554 'OTHER_CPLUSPLUSFLAGS': [ |
555 '-std=c++0x', | 555 '-std=c++0x', |
556 '-fvisibility=hidden', | 556 '-fvisibility=hidden', |
557 '-fvisibility-inlines-hidden', | 557 '-fvisibility-inlines-hidden', |
558 ], | 558 ], |
559 'GCC_THUMB_SUPPORT': 'NO', | 559 'GCC_THUMB_SUPPORT': 'NO', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d | 620 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d |
621 ], | 621 ], |
622 }], | 622 }], |
623 | 623 |
624 ], # end 'conditions' | 624 ], # end 'conditions' |
625 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details | 625 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details |
626 'xcode_settings': { | 626 'xcode_settings': { |
627 'SYMROOT': '<(DEPTH)/xcodebuild', | 627 'SYMROOT': '<(DEPTH)/xcodebuild', |
628 }, | 628 }, |
629 } | 629 } |
OLD | NEW |