| 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 }, | 52 }, |
| 52 }, | 53 }, |
| 53 { | 54 { |
| 54 'target_name': 'ActionExtension', | 55 'target_name': 'ActionExtension', |
| 55 'product_name': 'ActionExtension', | 56 'product_name': 'ActionExtension', |
| 56 'type': 'executable', | 57 'type': 'executable', |
| 57 'mac_bundle': 1, | 58 'mac_bundle': 1, |
| 58 'ios_app_extension': 1, | 59 'ios_app_extension': 1, |
| 59 'sources': [ | 60 'sources': [ |
| 60 'ActionExtension/ActionViewController.h', | 61 'ActionExtension/ActionViewController.h', |
| 61 'ActionExtension/ActionViewController.m', | 62 'ActionExtension/ActionViewController.m', |
| 62 ], | 63 ], |
| 63 'link_settings': { | 64 'link_settings': { |
| 64 'libraries': [ | 65 'libraries': [ |
| 65 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 66 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 66 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 67 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 67 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', | 68 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 'xcode_settings': { | 71 'xcode_settings': { |
| 71 'OTHER_CFLAGS': [ | 72 'OTHER_CFLAGS': [ |
| 72 '-fobjc-abi-version=2', | 73 '-fobjc-abi-version=2', |
| 73 ], | 74 ], |
| 74 'INFOPLIST_FILE': 'ActionExtension/Info.plist', | 75 'INFOPLIST_FILE': 'ActionExtension/Info.plist', |
| 75 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', | 76 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
| 76 'ARCHS': [ 'armv7' ], | 77 'ARCHS': [ 'armv7' ], |
| 77 'SDKROOT': 'iphoneos', | 78 'SDKROOT': 'iphoneos', |
| 78 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', | 79 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', |
| 80 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', |
| 79 }, | 81 }, |
| 80 }, | 82 }, |
| 81 ], | 83 ], |
| 82 } | 84 } |
| 83 | 85 |
| OLD | NEW |