| OLD | NEW |
| 1 # Copyright (c) 2014 Google Inc. All rights reserved. | 1 # Copyright (c) 2014 Google Inc. 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 { | 5 { |
| 6 'make_global_settings': [ | 6 'make_global_settings': [ |
| 7 ['CC', '/usr/bin/clang'], | 7 ['CC', '/usr/bin/clang'], |
| 8 ['CXX', '/usr/bin/clang++'], | 8 ['CXX', '/usr/bin/clang++'], |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 }, | 41 }, |
| 42 'xcode_settings': { | 42 'xcode_settings': { |
| 43 'OTHER_CFLAGS': [ | 43 'OTHER_CFLAGS': [ |
| 44 '-fobjc-abi-version=2', | 44 '-fobjc-abi-version=2', |
| 45 ], | 45 ], |
| 46 'INFOPLIST_FILE': 'ExtensionContainer/Info.plist', | 46 'INFOPLIST_FILE': 'ExtensionContainer/Info.plist', |
| 47 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', | 47 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
| 48 'ARCHS': [ 'armv7' ], | 48 'ARCHS': [ 'armv7' ], |
| 49 'SDKROOT': 'iphoneos', | 49 'SDKROOT': 'iphoneos', |
| 50 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', | 50 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', |
| 51 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', | 51 'CODE_SIGNING_REQUIRED': 'NO', |
| 52 'DEPLOYMENT_POSTPROCESSING': 'YES', |
| 53 'STRIP_INSTALLED_PRODUCT': 'YES', |
| 54 'CONFIGURATION_BUILD_DIR':'build/Default', |
| 52 }, | 55 }, |
| 53 }, | 56 }, |
| 54 { | 57 { |
| 55 'target_name': 'ActionExtension', | 58 'target_name': 'ActionExtension', |
| 56 'product_name': 'ActionExtension', | 59 'product_name': 'ActionExtension', |
| 57 'type': 'executable', | 60 'type': 'executable', |
| 58 'mac_bundle': 1, | 61 'mac_bundle': 1, |
| 59 'ios_app_extension': 1, | 62 'ios_app_extension': 1, |
| 60 'sources': [ | 63 'sources': [ |
| 61 'ActionExtension/ActionViewController.h', | 64 'ActionExtension/ActionViewController.h', |
| 62 'ActionExtension/ActionViewController.m', | 65 'ActionExtension/ActionViewController.m', |
| 63 ], | 66 ], |
| 64 'link_settings': { | 67 'link_settings': { |
| 65 'libraries': [ | 68 'libraries': [ |
| 66 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 69 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 67 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 70 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 68 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', | 71 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
| 69 ], | 72 ], |
| 70 }, | 73 }, |
| 71 'xcode_settings': { | 74 'xcode_settings': { |
| 72 'OTHER_CFLAGS': [ | 75 'OTHER_CFLAGS': [ |
| 73 '-fobjc-abi-version=2', | 76 '-fobjc-abi-version=2', |
| 74 ], | 77 ], |
| 75 'INFOPLIST_FILE': 'ActionExtension/Info.plist', | 78 'INFOPLIST_FILE': 'ActionExtension/Info.plist', |
| 76 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', | 79 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
| 77 'ARCHS': [ 'armv7' ], | 80 'ARCHS': [ 'armv7' ], |
| 78 'SDKROOT': 'iphoneos', | 81 'SDKROOT': 'iphoneos', |
| 79 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', | 82 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', |
| 80 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', | 83 'CODE_SIGNING_REQUIRED': 'NO', |
| 84 'DEPLOYMENT_POSTPROCESSING': 'YES', |
| 85 'STRIP_INSTALLED_PRODUCT': 'YES', |
| 86 'CONFIGURATION_BUILD_DIR':'build/Default', |
| 81 }, | 87 }, |
| 82 }, | 88 }, |
| 83 ], | 89 ], |
| 84 } | 90 } |
| 85 | 91 |
| OLD | NEW |