| 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 11 matching lines...) Expand all Loading... |
| 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', | |
| 34 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 32 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 35 '../../sdk/lib/_internal/pub/bin/async_compile.dart', | 33 '--package-root=<(PRODUCT_DIR)/pub_packages/', |
| 36 '<(PRODUCT_DIR)/pub_packages/', | 34 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
| 37 '<(SHARED_INTERMEDIATE_DIR)', | 35 '../../sdk/lib/_internal/pub_generated/bin/pub.dart', |
| 38 ], | 36 ] |
| 39 }, | 37 }, |
| 40 ], | 38 ], |
| 41 }, | 39 }, |
| 42 { | 40 { |
| 43 'target_name': 'core_stubs', | 41 'target_name': 'core_stubs', |
| 44 'type': 'none', | 42 'type': 'none', |
| 45 'dependencies': [ | 43 'dependencies': [ |
| 46 '../../runtime/dart-runtime.gyp:dart', | 44 '../../runtime/dart-runtime.gyp:dart', |
| 47 '../../pkg/pkg.gyp:pkg_packages', | 45 '../../pkg/pkg.gyp:pkg_packages', |
| 48 '../../pkg/pkg_files.gyp:pkg_files_stamp' | 46 '../../pkg/pkg_files.gyp:pkg_files_stamp' |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'python', '../../tools/create_timestamp_file.py', | 87 'python', '../../tools/create_timestamp_file.py', |
| 90 '<@(_outputs)', | 88 '<@(_outputs)', |
| 91 ], | 89 ], |
| 92 }, | 90 }, |
| 93 ], | 91 ], |
| 94 } | 92 } |
| 95 | 93 |
| 96 | 94 |
| 97 ], | 95 ], |
| 98 } | 96 } |
| OLD | NEW |