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

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

Issue 23545009: Land a test change that should have been part of r1704. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 3 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 Google Inc. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'dep_framework', 7 'target_name': 'dep_framework',
8 'product_name': 'Dependency Bundle', 8 'product_name': 'Dependency Bundle',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
11 'sources': [ 'empty.c', ], 11 'sources': [ 'empty.c', ],
12 }, 12 },
13 { 13 {
14 'target_name': 'test_framework', 14 'target_name': 'test_framework',
15 'product_name': 'Test Framework', 15 'product_name': 'Test Framework',
16 'type': 'shared_library', 16 'type': 'shared_library',
17 'mac_bundle': 1, 17 'mac_bundle': 1,
18 'dependencies': [ 'dep_framework', ], 18 'dependencies': [ 'dep_framework', ],
19 'sources': [ 19 'sources': [
20 'TestFramework/ObjCVector.h', 20 'TestFramework/ObjCVector.h',
21 'TestFramework/ObjCVectorInternal.h', 21 'TestFramework/ObjCVectorInternal.h',
22 'TestFramework/ObjCVector.mm', 22 'TestFramework/ObjCVector.mm',
23 ], 23 ],
24 'mac_framework_headers': [
25 'TestFramework/ObjCVector.h',
26 ],
27 'mac_bundle_resources': [ 24 'mac_bundle_resources': [
28 'TestFramework/English.lproj/InfoPlist.strings', 25 'TestFramework/English.lproj/InfoPlist.strings',
29 ], 26 ],
30 'link_settings': { 27 'link_settings': {
31 'libraries': [ 28 'libraries': [
32 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 29 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
33 ], 30 ],
34 }, 31 },
35 'xcode_settings': { 32 'xcode_settings': {
36 'INFOPLIST_FILE': 'TestFramework/Info.plist', 33 'INFOPLIST_FILE': 'TestFramework/Info.plist',
(...skipping 28 matching lines...) Expand all
65 { 62 {
66 'action_name': 'aektschn', 63 'action_name': 'aektschn',
67 'inputs': [], 64 'inputs': [],
68 'outputs': ['<(PRODUCT_DIR)/touched_file'], 65 'outputs': ['<(PRODUCT_DIR)/touched_file'],
69 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], 66 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'],
70 }, 67 },
71 ], 68 ],
72 }, 69 },
73 ], 70 ],
74 } 71 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698