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 23 matching lines...) Expand all Loading... | |
34 ], | 34 ], |
35 }, | 35 }, |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | 38 { |
39 'target_name': 'pub_packages', | 39 'target_name': 'pub_packages', |
40 'type': 'none', | 40 'type': 'none', |
41 'actions': [ | 41 'actions': [ |
42 { | 42 { |
43 'action_name': 'remove_html_imports', | 43 'action_name': 'remove_html_imports', |
44 'dependencies': [ | |
45 'pkg_files.gyp:http_files_stamp', | |
ahe
2014/08/07 09:55:35
Why do you have two gyp files in this directory?
| |
46 ], | |
44 'inputs': [ | 47 'inputs': [ |
45 '../tools/remove_html_imports.py', | 48 '../tools/remove_html_imports.py', |
46 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp', | 49 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp', |
47 ], | 50 ], |
48 'outputs': [ | 51 'outputs': [ |
49 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', | 52 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', |
50 ], | 53 ], |
51 'action': [ | 54 'action': [ |
52 'python', '../tools/remove_html_imports.py', | 55 'python', '../tools/remove_html_imports.py', |
53 'http/lib', | 56 'http/lib', |
(...skipping 25 matching lines...) Expand all Loading... | |
79 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', | 82 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', |
80 '<(PRODUCT_DIR)/pub_packages', | 83 '<(PRODUCT_DIR)/pub_packages', |
81 '<@(_inputs)', | 84 '<@(_inputs)', |
82 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | 85 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', |
83 ], | 86 ], |
84 }, | 87 }, |
85 ], | 88 ], |
86 } | 89 } |
87 ], | 90 ], |
88 } | 91 } |
OLD | NEW |