OLD | NEW |
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 14 matching lines...) Expand all Loading... |
25 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', | 25 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', |
26 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 26 '<(SHARED_INTERMEDIATE_DIR)/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 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 32 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
33 '--package-root=<(PRODUCT_DIR)/packages/', | 33 '--package-root=<(PRODUCT_DIR)/packages/', |
34 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 34 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
35 '../../sdk/lib/_internal/pub_generated/bin/pub.dart', | 35 '../../sdk/lib/_internal/pub/bin/pub.dart', |
36 ] | 36 ] |
37 }, | 37 }, |
38 ], | 38 ], |
39 }, | 39 }, |
40 { | 40 { |
41 'target_name': 'core_stubs', | 41 'target_name': 'core_stubs', |
42 'type': 'none', | 42 'type': 'none', |
43 'dependencies': [ | 43 'dependencies': [ |
44 '../../runtime/dart-runtime.gyp:dart', | 44 '../../runtime/dart-runtime.gyp:dart', |
45 '../../pkg/pkg.gyp:pkg_packages', | 45 '../../pkg/pkg.gyp:pkg_packages', |
(...skipping 25 matching lines...) Expand all Loading... |
71 # and creates a single pub_files.stamp | 71 # and creates a single pub_files.stamp |
72 { | 72 { |
73 'target_name': 'pub_files_stamp', | 73 'target_name': 'pub_files_stamp', |
74 'type': 'none', | 74 'type': 'none', |
75 'actions': [ | 75 'actions': [ |
76 { | 76 { |
77 'action_name': 'make_pub_files_stamp', | 77 'action_name': 'make_pub_files_stamp', |
78 'inputs': [ | 78 'inputs': [ |
79 '../../tools/create_timestamp_file.py', | 79 '../../tools/create_timestamp_file.py', |
80 '<!@(["python", "../../tools/list_files.py", "\\.dart$",' | 80 '<!@(["python", "../../tools/list_files.py", "\\.dart$",' |
81 ' "../../sdk/lib/_internal/pub_generated"])', | 81 ' "../../sdk/lib/_internal/pub"])', |
82 ], | 82 ], |
83 'outputs': [ | 83 'outputs': [ |
84 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp', | 84 '<(SHARED_INTERMEDIATE_DIR)/pub_files.stamp', |
85 ], | 85 ], |
86 'action': [ | 86 'action': [ |
87 'python', '../../tools/create_timestamp_file.py', | 87 'python', '../../tools/create_timestamp_file.py', |
88 '<@(_outputs)', | 88 '<@(_outputs)', |
89 ], | 89 ], |
90 }, | 90 }, |
91 ], | 91 ], |
92 } | 92 } |
93 | 93 |
94 | 94 |
95 ], | 95 ], |
96 } | 96 } |
OLD | NEW |