| Index: test/mac/xctest/test.gyp
|
| diff --git a/test/mac/xctest/test.gyp b/test/mac/xctest/test.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd8c3f7066bd3201679cdd9212327626149a1bc6
|
| --- /dev/null
|
| +++ b/test/mac/xctest/test.gyp
|
| @@ -0,0 +1,43 @@
|
| +# Copyright (c) 2013 Google Inc. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +{
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'classes',
|
| + 'type': 'static_library',
|
| + 'sources': [
|
| + 'MyClass.h',
|
| + 'MyClass.m',
|
| + ],
|
| + 'link_settings': {
|
| + 'libraries': [
|
| + '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
| + ],
|
| + },
|
| + },
|
| + {
|
| + 'target_name': 'tests',
|
| + 'type': 'loadable_module',
|
| + 'xctest_bundle': 1,
|
| + 'sources': [
|
| + 'TestCase.m',
|
| + ],
|
| + 'dependencies': [
|
| + 'classes',
|
| + ],
|
| + 'xcode_settings': {
|
| + 'WRAPPER_EXTENSION': 'xctest',
|
| + 'FRAMEWORK_SEARCH_PATHS': [
|
| + '$(inherited)',
|
| + '$(DEVELOPER_FRAMEWORKS_DIR)',
|
| + ],
|
| + 'OTHER_LDFLAGS': [
|
| + '$(inherited)',
|
| + '-ObjC',
|
| + ],
|
| + },
|
| + },
|
| + ],
|
| +}
|
| +
|
|
|