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 18 matching lines...) Expand all Loading... |
29 ], | 29 ], |
30 'outputs': [ | 30 'outputs': [ |
31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
33 ], | 33 ], |
34 'action': [ | 34 'action': [ |
35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
36 'create_snapshot.dart', | 36 'create_snapshot.dart', |
37 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', | 37 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', |
38 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart', | 38 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart', |
39 '--docgen_main=pkg/docgen/bin/docgen.dart', | |
40 '--package_root=<(PRODUCT_DIR)/packages/', | 39 '--package_root=<(PRODUCT_DIR)/packages/', |
41 ], | 40 ], |
42 }, | 41 }, |
43 ], | 42 ], |
44 }, | 43 }, |
45 # Other targets depend on dart2js files, but have to many inputs, | 44 # Other targets depend on dart2js files, but have to many inputs, |
46 # which causes issues on some platforms. | 45 # which causes issues on some platforms. |
47 # This target lists all the files in pkg/compiler, | 46 # This target lists all the files in pkg/compiler, |
48 # and creates a single dart2js_files.stamp | 47 # and creates a single dart2js_files.stamp |
49 { | 48 { |
(...skipping 12 matching lines...) Expand all Loading... |
62 ], | 61 ], |
63 'action': [ | 62 'action': [ |
64 'python', '../../tools/create_timestamp_file.py', | 63 'python', '../../tools/create_timestamp_file.py', |
65 '<@(_outputs)', | 64 '<@(_outputs)', |
66 ], | 65 ], |
67 }, | 66 }, |
68 ], | 67 ], |
69 } | 68 } |
70 ], | 69 ], |
71 } | 70 } |
OLD | NEW |