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

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

Issue 1746743002: Use checked-in .package file for building and testing (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Status fixes Created 4 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
« no previous file with comments | « utils/dartfmt/dartfmt.gyp ('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': [
11 '../../runtime/dart-runtime.gyp:dart', 11 '../../runtime/dart-runtime.gyp:dart',
12 '../../pkg/pkg.gyp:pkg_packages',
13 '../../pkg/pkg_files.gyp:pkg_files_stamp', 12 '../../pkg/pkg_files.gyp:pkg_files_stamp',
14 '../../utils/compiler/compiler.gyp:dart2js_files_stamp' 13 '../../utils/compiler/compiler.gyp:dart2js_files_stamp'
15 ], 14 ],
16 'actions': [ 15 'actions': [
17 { 16 {
18 'action_name': 'generate_pub_snapshot', 17 'action_name': 'generate_pub_snapshot',
19 'inputs': [ 18 'inputs': [
20 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 19 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
21 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart', 20 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
22 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', 21 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp',
23 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', 22 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp',
24 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 23 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
25 ], 24 ],
26 'outputs': [ 25 'outputs': [
27 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 26 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
28 ], 27 ],
29 'action': [ 28 'action': [
30 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 29 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
31 '--package-root=<(PRODUCT_DIR)/packages/',
32 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 30 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
33 '../../third_party/pkg/pub/bin/pub.dart', 31 '../../third_party/pkg/pub/bin/pub.dart',
34 ] 32 ]
35 }, 33 },
36 ], 34 ],
37 }, 35 },
38 ], 36 ],
39 } 37 }
OLDNEW
« no previous file with comments | « utils/dartfmt/dartfmt.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698