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

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

Issue 956203005: Adds the ability for 'copies' in Xcode project files to specify the 'Code Sign on Copy' option. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 5 years, 10 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 | « pylib/gyp/generator/xcode.py ('k') | test/mac/gyptest-copies.py » ('j') | 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,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ], 60 ],
61 'actions': [ 61 'actions': [
62 { 62 {
63 'action_name': 'aektschn', 63 'action_name': 'aektschn',
64 'inputs': [], 64 'inputs': [],
65 'outputs': ['<(PRODUCT_DIR)/touched_file'], 65 'outputs': ['<(PRODUCT_DIR)/touched_file'],
66 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], 66 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'],
67 }, 67 },
68 ], 68 ],
69 }, 69 },
70 {
71 'target_name': 'copy_target_code_sign',
72 'type': 'none',
73 'dependencies': [ 'test_framework', 'dep_framework', ],
74 'copies': [
75 # Test copying directories with spaces in src and dest paths.
76 {
77 'destination': '<(PRODUCT_DIR)/Test Framework.framework/foo',
78 'files': [
79 '<(PRODUCT_DIR)/Dependency Bundle.framework',
80 ],
81 'xcode_code_sign': 1,
82 },
83 ],
84 'actions': [
85 {
86 'action_name': 'aektschn',
87 'inputs': [],
88 'outputs': ['<(PRODUCT_DIR)/touched_file'],
89 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'],
90 },
91 ],
92 },
70 ], 93 ],
71 } 94 }
OLDNEW
« no previous file with comments | « pylib/gyp/generator/xcode.py ('k') | test/mac/gyptest-copies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698