Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(937)

Side by Side Diff: test/mac/xctest/test.gyp

Issue 51413002: Adds generator support for Xcode 5 xctest targets. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 {
6 'targets': [
7 {
8 'target_name': 'classes',
9 'type': 'static_library',
10 'sources': [
11 'MyClass.h',
12 'MyClass.m',
13 ],
14 'link_settings': {
15 'libraries': [
16 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
17 ],
18 },
19 },
20 {
21 'target_name': 'tests',
22 'type': 'loadable_module',
23 'mac_xctest_bundle': 1,
24 'sources': [
25 'TestCase.m',
26 ],
27 'dependencies': [
28 'classes',
29 ],
30 'mac_bundle_resources': [
31 'resource.txt',
32 ],
33 'xcode_settings': {
34 'WRAPPER_EXTENSION': 'xctest',
35 'FRAMEWORK_SEARCH_PATHS': [
36 '$(inherited)',
37 '$(DEVELOPER_FRAMEWORKS_DIR)',
38 ],
39 'OTHER_LDFLAGS': [
40 '$(inherited)',
41 '-ObjC',
42 ],
43 },
44 },
45 ],
46 }
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698