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

Side by Side Diff: dart.gyp

Issue 13979006: Pass in arguments to create_sdk instead of using positional command line arguments (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 | tools/create_sdk.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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # Contains all dependencies. 8 # Contains all dependencies.
9 'target_name': 'everything', 9 'target_name': 'everything',
10 'type': 'none', 10 'type': 'none',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
77 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 77 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
78 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', 78 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer',
79 ], 79 ],
80 'outputs': [ 80 'outputs': [
81 '<(PRODUCT_DIR)/dart-sdk/README', 81 '<(PRODUCT_DIR)/dart-sdk/README',
82 ], 82 ],
83 'action': [ 83 'action': [
84 'python', 84 'python',
85 'tools/create_sdk.py', 85 'tools/create_sdk.py',
86 '<(PRODUCT_DIR)/dart-sdk', 86 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk',
87 '<(SHARED_INTERMEDIATE_DIR)' 87 '--utils_snapshot_location', '<(SHARED_INTERMEDIATE_DIR)'
ahe 2013/04/11 09:48:43 I'd prefer if this was '<(SHARED_INTERMEDIATE_DIR)
88 ], 88 ],
89 'message': 'Creating SDK.', 89 'message': 'Creating SDK.',
90 }, 90 },
91 ], 91 ],
92 }, 92 },
93 { 93 {
94 # Upload the SDK. This target is separate from create_sdk as the 94 # Upload the SDK. This target is separate from create_sdk as the
95 # editor needs to build the SDK without uploading it. 95 # editor needs to build the SDK without uploading it.
96 'target_name': 'upload_sdk', 96 'target_name': 'upload_sdk',
97 'type': 'none', 97 'type': 'none',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 }, 227 },
228 { 228 {
229 'target_name': 'packages', 229 'target_name': 'packages',
230 'type': 'none', 230 'type': 'none',
231 'dependencies': [ 231 'dependencies': [
232 'pkg/pkg.gyp:pkg_packages', 232 'pkg/pkg.gyp:pkg_packages',
233 ], 233 ],
234 }, 234 },
235 ], 235 ],
236 } 236 }
OLDNEW
« no previous file with comments | « no previous file | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698