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

Side by Side Diff: tool/build_test_pkgs.sh

Issue 2234343003: fix #620, infer the input files from sources (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix Created 4 years, 4 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 | « test/worker/worker_test.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 set -e # bail on error
3
4 cd $( dirname "${BASH_SOURCE[0]}" )/..
5
6 mkdir -p gen/codegen_output/pkg/
7
8 SDK=--dart-sdk-summary=lib/runtime/dart_sdk.sum
9
10 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/expect.js \
11 --url-mapping=package:expect/expect.dart,test/codegen/expect.dart \
12 package:expect/expect.dart
13
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 \
16 package:async_helper/async_helper.dart
17
18 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/js.js \
19 package:js/js.dart
20
21 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/matcher.js \
22 package:matcher/matcher.dart
23
24 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/stack_trace.js \
vsm 2016/08/11 21:45:56 I believe stack_trace depends on path - don't you
Jennifer Messerly 2016/08/11 21:47:51 it'll just get inlined if it does. but we could sa
25 package:stack_trace/stack_trace.dart
26
27 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/path.js \
28 package:path/path.dart
29
30 ./bin/dartdevc.dart $SDK -o gen/codegen_output/pkg/unittest.js \
31 package:unittest/unittest.dart \
32 package:unittest/html_config.dart \
33 package:unittest/html_individual_config.dart \
34 package:unittest/html_enhanced_config.dart
OLDNEW
« no previous file with comments | « test/worker/worker_test.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698