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

Side by Side Diff: utils/pub/pub.gyp

Issue 472173004: Skeleton code for running the forthcoming async/await compiler on pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 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 | « tools/create_sdk.py ('k') | 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) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, 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 'target_name': 'pub', 8 'target_name': 'pub',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 11 matching lines...) Expand all
22 '../../sdk/lib/_internal/libraries.dart', 22 '../../sdk/lib/_internal/libraries.dart',
23 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp', 23 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp',
24 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', 24 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp',
25 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', 25 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp',
26 '<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', 26 '<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp',
27 ], 27 ],
28 'outputs': [ 28 'outputs': [
29 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 29 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
30 ], 30 ],
31 'action': [ 31 'action': [
32 'python',
33 '../../tools/create_pub_snapshot.py',
32 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 34 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
33 '--package-root=<(PRODUCT_DIR)/pub_packages/', 35 '../../sdk/lib/_internal/pub/bin/async_compile.dart',
34 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 36 '<(PRODUCT_DIR)/pub_packages/',
35 '../../sdk/lib/_internal/pub/bin/pub.dart', 37 '<(SHARED_INTERMEDIATE_DIR)',
36 ], 38 ],
37 }, 39 },
38 ], 40 ],
39 }, 41 },
40 { 42 {
41 'target_name': 'core_stubs', 43 'target_name': 'core_stubs',
42 'type': 'none', 44 'type': 'none',
43 'dependencies': [ 45 'dependencies': [
44 '../../runtime/dart-runtime.gyp:dart', 46 '../../runtime/dart-runtime.gyp:dart',
45 '../../pkg/pkg.gyp:pkg_packages', 47 '../../pkg/pkg.gyp:pkg_packages',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'python', '../../tools/create_timestamp_file.py', 89 'python', '../../tools/create_timestamp_file.py',
88 '<@(_outputs)', 90 '<@(_outputs)',
89 ], 91 ],
90 }, 92 },
91 ], 93 ],
92 } 94 }
93 95
94 96
95 ], 97 ],
96 } 98 }
OLDNEW
« no previous file with comments | « tools/create_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698