Chromium Code Reviews| 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 18 matching lines...) Expand all Loading... | |
| 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 { | 38 { |
| 39 'target_name': 'pub_packages', | 39 'target_name': 'pub_packages', |
|
ahe
2014/08/06 14:15:51
Adding another target here isn't necessary.
nweiz
2014/08/06 21:18:05
Why not? We need to refer to this target as distin
| |
| 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 'inputs': [ | 44 'inputs': [ |
| 45 '../tools/remove_html_imports.py', | 45 '../tools/remove_html_imports.py', |
| 46 '<!@(["python", "../tools/list_files.py", "\\.dart$", "http/lib"])', | 46 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp', |
|
ahe
2014/08/06 14:15:51
This target is always run because this file doesn'
ahe
2014/08/06 14:25:55
That's not correct. It is the action "make_pub_pac
nweiz
2014/08/06 21:18:05
Done.
| |
| 47 ], | 47 ], |
| 48 'outputs': [ | 48 'outputs': [ |
| 49 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', | 49 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', |
| 50 ], | 50 ], |
| 51 'action': [ | 51 'action': [ |
| 52 'python', '../tools/remove_html_imports.py', | 52 'python', '../tools/remove_html_imports.py', |
| 53 'http/lib', | 53 'http/lib', |
| 54 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | 54 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', |
| 55 ], | 55 ], |
| 56 }, | 56 }, |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 79 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', | 79 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/pub_packages.stamp', |
| 80 '<(PRODUCT_DIR)/pub_packages', | 80 '<(PRODUCT_DIR)/pub_packages', |
| 81 '<@(_inputs)', | 81 '<@(_inputs)', |
| 82 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | 82 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 ], | 85 ], |
| 86 } | 86 } |
| 87 ], | 87 ], |
| 88 } | 88 } |
| OLD | NEW |