| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |