OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 'variables': { | 6 'variables': { |
7 'dart_dir': '../..', | 7 'dart_dir': '../..', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 13 matching lines...) Expand all Loading... |
24 'create_snapshot.dart', | 24 'create_snapshot.dart', |
25 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', | 25 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', |
26 '../../tools/VERSION', | 26 '../../tools/VERSION', |
27 ], | 27 ], |
28 'outputs': [ | 28 'outputs': [ |
29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
30 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 30 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
31 ], | 31 ], |
32 'action': [ | 32 'action': [ |
33 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 33 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 34 '--packages=../../.packages', |
34 'create_snapshot.dart', | 35 'create_snapshot.dart', |
35 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', | 36 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', |
36 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart', | 37 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart', |
37 ], | 38 ], |
38 }, | 39 }, |
39 ], | 40 ], |
40 }, | 41 }, |
41 # Other targets depend on dart2js files, but have to many inputs, | 42 # Other targets depend on dart2js files, but have to many inputs, |
42 # which causes issues on some platforms. | 43 # which causes issues on some platforms. |
43 # This target lists all the files in pkg/compiler, | 44 # This target lists all the files in pkg/compiler, |
(...skipping 14 matching lines...) Expand all Loading... |
58 ], | 59 ], |
59 'action': [ | 60 'action': [ |
60 'python', '../../tools/create_timestamp_file.py', | 61 'python', '../../tools/create_timestamp_file.py', |
61 '<@(_outputs)', | 62 '<@(_outputs)', |
62 ], | 63 ], |
63 }, | 64 }, |
64 ], | 65 ], |
65 } | 66 } |
66 ], | 67 ], |
67 } | 68 } |
OLD | NEW |