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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | utils/dartdevc/BUILD.gn » ('j') | 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) 2017, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2017, 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 # The SDK for Fuchsia does not include: 5 # The SDK for Fuchsia does not include:
6 # dart2js 6 # dart2js
7 # dartdoc 7 # dartdoc
8 # ddc 8 # ddc
9 # and libraries that are browser-specific, since these are not used and require 9 # and libraries that are browser-specific, since these are not used and require
10 # significant time to build. 10 # significant time to build.
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 ] 380 ]
381 381
382 script = "../tools/create_sdk.py" 382 script = "../tools/create_sdk.py"
383 args = [ 383 args = [
384 "--sdk_output_dir", 384 "--sdk_output_dir",
385 rebase_path("$root_out_dir/dart-sdk"), 385 rebase_path("$root_out_dir/dart-sdk"),
386 "--snapshot_location", 386 "--snapshot_location",
387 rebase_path("$root_gen_dir"), 387 rebase_path("$root_gen_dir"),
388 ] 388 ]
389 } 389 }
390
391 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
392 deps = [
393 ":create_sdk",
394 "../utils/dartdevc:dartdevc_web",
395 "../utils/dartdevc:stack_trace_mapper",
396 ]
397 dart_out = get_label_info("../utils/dartdevc:dartdevc_web", "root_out_dir")
398 sources = [
399 "$dart_out/dev_compiler/build/web/ddc_web_compiler.js",
400 "$dart_out/dev_compiler/build/web/dart_stack_trace_mapper.js",
401 ]
402 outputs = [
403 "$root_out_dir/dart-sdk/lib/dev_compiler/web/{{source_file_part}}",
404 ]
405 }
390 } 406 }
OLDNEW
« 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