Chromium Code Reviews| Index: dart.gyp |
| =================================================================== |
| --- dart.gyp (revision 14225) |
| +++ dart.gyp (working copy) |
| @@ -110,6 +110,36 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'editor', |
| + 'type': 'none', |
| + 'dependencies': [ |
| + 'create_sdk', |
| + ], |
| + 'actions': [ |
| + { |
| + 'action_name': 'build_editor_py', |
| + 'inputs': [ |
| + 'tools/VERSION', |
| + 'tools/build_editor.py', |
| + '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| + '<!@(["python", "tools/list_files.py", "\\.(css|html|png|gif|xml|properties)$", "editor/tools"])', |
| + # This produces too many input files for gyp. |
| + #'<!@(["python", "tools/list_files.py", "\\.java$", "editor/tools/plugins"])', |
|
devoncarew
2012/10/31 01:20:17
Currently we always run the build_editor_py action
|
| + ], |
| + 'outputs': [ |
| + '<(PRODUCT_DIR)/editor/VERSION', |
| + # We never create this file - the build_editor_py action is always run. |
| + '<(PRODUCT_DIR)/editor/foobar.txt', |
| + ], |
| + 'action': [ |
| + 'python', |
| + 'tools/build_editor.py', |
| + '<(PRODUCT_DIR)/editor', |
| + ], |
| + }, |
| + ], |
| + }, |
| + { |
| 'target_name': 'samples', |
| 'type': 'none', |
| 'dependencies': [ |