Chromium Code Reviews| Index: pkg/pkg_files.gyp |
| =================================================================== |
| --- pkg/pkg_files.gyp (revision 37933) |
| +++ pkg/pkg_files.gyp (working copy) |
| @@ -11,17 +11,40 @@ |
| { |
| 'target_name': 'pkg_files_stamp', |
| 'type': 'none', |
| + 'dependencies': [ |
| + 'third_party_pkg_files_stamp', |
| + ], |
| 'actions': [ |
| { |
| 'action_name': 'make_pkg_files_stamp', |
| 'inputs': [ |
| '../tools/create_timestamp_file.py', |
| '<!@(["python", "../tools/list_files.py", "\\.dart$", "."])', |
| + '<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', |
| + ], |
| + 'action': [ |
| + 'python', '../tools/create_timestamp_file.py', |
| + '<@(_outputs)', |
| + ], |
| + }, |
| + ], |
| + }, |
| + { |
| + 'target_name': 'third_party_pkg_files_stamp', |
| + 'type': 'none', |
| + 'actions': [ |
| + { |
| + 'action_name': 'make_pkg_files_stamp', |
| + 'inputs': [ |
| + '../tools/create_timestamp_file.py', |
| '<!@(["python", "../tools/list_files.py", "\\.dart$",' |
| '"../third_party/pkg"])', |
| ], |
| 'outputs': [ |
| - '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', |
| + '<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp', |
| ], |
| 'action': [ |
| 'python', '../tools/create_timestamp_file.py', |
| @@ -30,5 +53,6 @@ |
| }, |
| ], |
| } |
| + |
|
Bill Hesse
2014/07/02 11:07:29
Stray line?
ricow1
2014/07/02 11:09:55
Done.
|
| ], |
| } |