| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |