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

Side by Side Diff: pkg/dev_compiler/tool/build_test_pkgs.sh

Issue 2474523003: fix #27607, add dev_compiler summary to the SDK and move JS files (Closed)
Patch Set: fix typo 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 | « pkg/dev_compiler/tool/build_sdk.sh ('k') | pkg/dev_compiler/web/web_command.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 set -e # bail on error 2 set -e # bail on error
3 3
4 cd $( dirname "${BASH_SOURCE[0]}" )/.. 4 cd $( dirname "${BASH_SOURCE[0]}" )/..
5 5
6 mkdir -p gen/codegen_output/pkg/ 6 mkdir -p gen/codegen_output/pkg/
7 7
8 SDK=--dart-sdk-summary=lib/js/amd/dart_sdk.sum 8 SDK=--dart-sdk-summary=lib/sdk/ddc_sdk.sum
9 9
10 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/expect.js \ 10 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/expect.js \
11 package:expect/expect.dart \ 11 package:expect/expect.dart \
12 package:expect/minitest.dart 12 package:expect/minitest.dart
13 13
14 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/async_helper.js \ 14 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/async_helper.js \
15 --url-mapping=package:async_helper/async_helper.dart,test/codegen/async_help er.dart \ 15 --url-mapping=package:async_helper/async_helper.dart,test/codegen/async_help er.dart \
16 package:async_helper/async_helper.dart 16 package:async_helper/async_helper.dart
17 17
18 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/collection.js \ 18 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/collection.js \
(...skipping 14 matching lines...) Expand all
33 33
34 ./bin/dartdevc.dart $SDK --unsafe-force-compile \ 34 ./bin/dartdevc.dart $SDK --unsafe-force-compile \
35 -o gen/codegen_output/pkg/unittest.js \ 35 -o gen/codegen_output/pkg/unittest.js \
36 -s gen/codegen_output/pkg/matcher.sum \ 36 -s gen/codegen_output/pkg/matcher.sum \
37 -s gen/codegen_output/pkg/path.sum \ 37 -s gen/codegen_output/pkg/path.sum \
38 -s gen/codegen_output/pkg/stack_trace.sum \ 38 -s gen/codegen_output/pkg/stack_trace.sum \
39 package:unittest/unittest.dart \ 39 package:unittest/unittest.dart \
40 package:unittest/html_config.dart \ 40 package:unittest/html_config.dart \
41 package:unittest/html_individual_config.dart \ 41 package:unittest/html_individual_config.dart \
42 package:unittest/html_enhanced_config.dart 42 package:unittest/html_enhanced_config.dart
OLDNEW
« no previous file with comments | « pkg/dev_compiler/tool/build_sdk.sh ('k') | pkg/dev_compiler/web/web_command.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698