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

Side by Side Diff: pkg/dev_compiler/tool/build_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/test/codegen_test.dart ('k') | pkg/dev_compiler/tool/build_sdk.sh » ('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 # Build leaf packages. These have no other package dependencies. 10 # Build leaf packages. These have no other package dependencies.
11 11
12 # Under pkg 12 # Under pkg
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 package:async_helper/async_helper.dart 15 package:async_helper/async_helper.dart
16 16
17 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/expect.js \ 17 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/expect.js \
18 package:expect/expect.dart \ 18 package:expect/expect.dart \
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 # Composite packages with dependencies 84 # Composite packages with dependencies
85 85
86 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/async.js \ 86 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/async.js \
87 -s gen/codegen_output/pkg/collection.sum \ 87 -s gen/codegen_output/pkg/collection.sum \
88 package:async/async.dart 88 package:async/async.dart
89 89
90 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/stack_trace.js \ 90 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/stack_trace.js \
91 -s gen/codegen_output/pkg/path.sum \ 91 -s gen/codegen_output/pkg/path.sum \
92 package:stack_trace/stack_trace.dart 92 package:stack_trace/stack_trace.dart
OLDNEW
« no previous file with comments | « pkg/dev_compiler/test/codegen_test.dart ('k') | pkg/dev_compiler/tool/build_sdk.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698