Home | History | Annotate | Download | only in deployment-target
      1 # Copyright (c) 2013 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 {
      5   'make_global_settings': [
      6     ['CC', '/usr/bin/clang'],
      7     ['CXX', '/usr/bin/clang++'],
      8   ],
      9   'targets': [
     10     {
     11       'target_name': 'iphoneos-version-min-4.3',
     12       'type': 'static_library',
     13       'sources': [ 'check-version-min.c', ],
     14       'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
     15       'xcode_settings': {
     16         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
     17         'ARCHS': [ 'armv7' ],
     18         'SDKROOT': 'iphoneos',
     19         'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
     20       },
     21     },
     22     {
     23       'target_name': 'iphoneos-version-min-5.0',
     24       'type': 'static_library',
     25       'sources': [ 'check-version-min.c', ],
     26       'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
     27       'xcode_settings': {
     28         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
     29         'ARCHS': [ 'armv7' ],
     30         'SDKROOT': 'iphoneos',
     31         'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
     32       },
     33     },
     34     {
     35       'target_name': 'iphonesimulator-version-min-4.3',
     36       'type': 'static_library',
     37       'sources': [ 'check-version-min.c', ],
     38       'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
     39       'xcode_settings': {
     40         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
     41         'SDKROOT': 'iphonesimulator',
     42         'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
     43       },
     44     },
     45     {
     46       'target_name': 'iphonesimulator-version-min-5.0',
     47       'type': 'static_library',
     48       'sources': [ 'check-version-min.c', ],
     49       'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
     50       'xcode_settings': {
     51         'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
     52         'SDKROOT': 'iphonesimulator',
     53         'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
     54       },
     55     },
     56   ],
     57 }
     58 
     59