Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1236)

Side by Side Diff: utils/compiler/BUILD.gn

Issue 2446473002: GN: Fix build (Closed)
Patch Set: Remove redundant print Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/dart_for_gn.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tools/dart_for_gn.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698