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 17 matching lines...) Expand all Loading... | |
| 28 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 28 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', |
| 29 ], | 29 ], |
| 30 'action': [ | 30 'action': [ |
| 31 'python', '../tools/make_links.py', | 31 'python', '../tools/make_links.py', |
| 32 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 32 '--timestamp_file=<(SHARED_INTERMEDIATE_DIR)/packages.stamp', |
| 33 '<(PRODUCT_DIR)/packages', | 33 '<(PRODUCT_DIR)/packages', |
| 34 '<@(_inputs)', | 34 '<@(_inputs)', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 ], | 37 ], |
| 38 }, | |
| 39 { | |
| 40 'target_name': 'pub_packages', | |
| 41 'type': 'none', | |
| 42 'dependencies': [ | |
| 43 'pkg_files.gyp:http_files_stamp', | |
| 44 ], | |
| 45 'actions': [ | |
| 46 { | |
| 47 'action_name': 'remove_html_imports', | |
| 48 'inputs': [ | |
| 49 '../tools/remove_html_imports.py', | |
|
Siggi Cherem (dart-lang)
2014/12/18 17:02:44
was this just not needed anymore, or did something
nweiz
2014/12/18 18:51:50
This whole target was created when I thought I'd b
| |
| 50 '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp', | |
| 51 ], | |
| 52 'outputs': [ | |
| 53 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib/http.dart', | |
| 54 ], | |
| 55 'action': [ | |
| 56 'python', '../tools/remove_html_imports.py', | |
| 57 'http/lib', | |
| 58 '<(SHARED_INTERMEDIATE_DIR)/remove_html_imports/http/lib', | |
| 59 ], | |
| 60 }, | |
| 61 { | |
| 62 'action_name': 'make_pub_packages', | |
| 63 'inputs': [ | |
| 64 '../tools/make_links.py', | |
| 65 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
| 66 '"--exclude=http", "."])', | |
| 67 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
| 68 '"third_party"])', | |
| 69 '<!@(["python", "../tools/list_pkg_directories.py", ' | |
| 70 '"../third_party/pkg"])', | |
| 71 '../sdk/lib/_internal', | |
| 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 } | 40 } |
| OLD | NEW |