OLD | NEW |
---|---|
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'pkg_packages', | 8 'target_name': 'pkg_packages', |
9 'type': 'none', | 9 'type': 'none', |
10 'actions': [ | 10 'actions': [ |
(...skipping 17 matching lines...) Expand all Loading... | |
28 ], | 28 ], |
29 'action': [ | 29 'action': [ |
30 'python', '../tools/make_links.py', | 30 'python', '../tools/make_links.py', |
31 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 31 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/packages.stamp', |
32 '<(PRODUCT_DIR)/packages', | 32 '<(PRODUCT_DIR)/packages', |
33 '<@(_inputs)', | 33 '<@(_inputs)', |
34 ], | 34 ], |
35 }, | 35 }, |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | |
39 'target_name': 'pub_packages', | |
40 'type': 'none', | |
41 'actions': [ | |
42 { | |
43 'action_name': 'remove_html_imports', | |
44 'inputs': [ | |
45 '../tools/remove_html_imports.py', | |
46 '<!@(["python", "../tools/list_files.py", "\\.dart$", "http/lib"])', | |
47 ], | |
48 'outputs': [ | |
49 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', | |
50 ], | |
51 'action': [ | |
52 'python', '../tools/remove_html_imports.py', | |
53 'http/lib', | |
54 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | |
55 ], | |
56 }, | |
57 { | |
58 'action_name': 'make_pub_packages', | |
59 'inputs': [ | |
60 '../tools/make_links.py', | |
61 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
62 '"--exclude=http", "."])', | |
63 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
64 '"third_party"])', | |
65 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
66 '"../third_party/pkg"])', | |
67 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
68 '"polymer/e2e_test/"])', | |
69 '../sdk/lib/_internal/compiler', | |
70 '../sdk/lib/_internal/libraries.dart', | |
71 '../site/try', | |
ahe
2014/08/06 14:19:57
Why is this depending on Try Dart?
nweiz
2014/08/06 19:32:10
Other than the http stuff, it's a straight copy of
ricow1
2014/08/07 07:56:39
site/try is an input in pkg_packages to get a syml
| |
72 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', | |
73 ], | |
74 'outputs': [ | |
75 '<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', | |
76 ], | |
77 'action': [ | |
78 'python', '../tools/make_links.py', | |
79 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', | |
80 '<(PRODUCT_DIR)/pub_packages', | |
81 '<@(_inputs)', | |
82 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | |
83 ], | |
84 }, | |
85 ], | |
86 } | |
38 ], | 87 ], |
39 } | 88 } |
OLD | NEW |