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

Side by Side Diff: sdk/lib/_internal/pub/pub.gyp

Issue 13966011: Put a snapshot of pub in the SDK. (Closed) Base URL: https://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
OLDNEW
(Empty)
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
3 # BSD-style license that can be found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'pub',
9 'type': 'none',
10 'dependencies': [
11 '../../../../runtime/dart-runtime.gyp:dart',
12 ],
13 'actions': [
14 {
15 'action_name': 'generate_pub_snapshot',
16 'inputs': [
17 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
18 '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "."]) ',
19 '../libraries.dart',
20 '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "../c ompiler"])',
21 '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "../. ./../../pkg"])',
22 ],
23 'outputs': [
24 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
25 ],
26 'action': [
27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
28 '--package-root=<(PRODUCT_DIR)/packages/',
29 '--generate-script-snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snap shot',
30 'bin/pub.dart',
31 ],
32 },
33 ],
34 },
35 ],
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698