| OLD | NEW |
| 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2016, 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 import("../create_timestamp.gni") | 5 import("../create_timestamp.gni") |
| 6 import("../invoke_dart.gni") | 6 import("../invoke_dart.gni") |
| 7 | 7 |
| 8 create_timestamp_file("dart2js_files_stamp") { | 8 create_timestamp_file("dart2js_files_stamp") { |
| 9 path = rebase_path("../../pkg/compiler/lib") | 9 path = rebase_path("../../pkg/compiler/lib") |
| 10 output = "$root_gen_dir/dart2js_files.stamp" | 10 output = "$root_gen_dir/dart2js_files.stamp" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ] | 64 ] |
| 65 } | 65 } |
| 66 | 66 |
| 67 application_snapshot("utils_wrapper") { | 67 application_snapshot("utils_wrapper") { |
| 68 deps = [ | 68 deps = [ |
| 69 ":dart2js_create_snapshot_entries" | 69 ":dart2js_create_snapshot_entries" |
| 70 ] | 70 ] |
| 71 main_dart = "$root_gen_dir/utils_wrapper.dart" | 71 main_dart = "$root_gen_dir/utils_wrapper.dart" |
| 72 training_args = [ "--help" ] | 72 training_args = [ "--help" ] |
| 73 } | 73 } |
| 74 | |
| 75 group("compiler") { | |
| 76 deps = [ | |
| 77 ":dart2js", | |
| 78 ":utils_wrapper", | |
| 79 ] | |
| 80 } | |
| OLD | NEW |