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

Unified Diff: sdk/BUILD.gn

Issue 2889253002: Ship dart2js output for dev_compiler/web in the sdk. (Closed)
Patch Set: Ship dart2js output for dev_compiler/web in the sdk. Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/BUILD.gn
diff --git a/sdk/BUILD.gn b/sdk/BUILD.gn
index 0f7d34ca83cb781686eff17473786bd1d1ceb1c3..e0b41bdc2f737ba081007561d3dbe1c502787ab1 100644
--- a/sdk/BUILD.gn
+++ b/sdk/BUILD.gn
@@ -387,4 +387,20 @@ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
rebase_path("$root_gen_dir"),
]
}
+
+ copy("copy_dev_compiler_tools") {
zra 2017/05/20 21:43:30 This doesn't appear to be hooked up to anything. C
zra 2017/05/21 04:45:35 Also, including this in an ARM cross-build of the
+ deps = [
+ ":create_sdk",
+ "../utils/dartdevc:dartdevc_web",
+ "../utils/dartdevc:stack_trace_mapper",
+ ]
+ dart_out = get_label_info("../utils/dartdevc:dartdevc_web", "root_out_dir")
+ sources = [
+ "$dart_out/dev_compiler/build/web/ddc_web_compiler.js",
+ "$dart_out/dev_compiler/build/web/dart_stack_trace_mapper.js",
+ ]
+ outputs = [
+ "$root_out_dir/dart-sdk/lib/dev_compiler/web/{{source_file_part}}",
+ ]
+ }
}
« no previous file with comments | « no previous file | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698