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': 'compiler', | 8 'target_name': 'compiler', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 { | 105 { |
| 106 'target_name': 'api_docs', | 106 'target_name': 'api_docs', |
| 107 'type': 'none', | 107 'type': 'none', |
| 108 'dependencies': [ | 108 'dependencies': [ |
| 109 'utils/apidoc/apidoc.gyp:api_docs', | 109 'utils/apidoc/apidoc.gyp:api_docs', |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 { | 112 { |
| 113 'target_name': 'editor', | |
| 114 'type': 'none', | |
| 115 'dependencies': [ | |
| 116 'create_sdk', | |
| 117 ], | |
| 118 'actions': [ | |
| 119 { | |
| 120 'action_name': 'build_editor_py', | |
| 121 'inputs': [ | |
| 122 'tools/VERSION', | |
| 123 'tools/build_editor.py', | |
| 124 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | |
| 125 '<!@(["python", "tools/list_files.py", "\\.(css|html|png|gif|xml|pro perties)$", "editor/tools"])', | |
| 126 # This produces too many input files for gyp. | |
| 127 #'<!@(["python", "tools/list_files.py", "\\.java$", "editor/tools/pl ugins"])', | |
|
devoncarew
2012/10/31 01:20:17
Currently we always run the build_editor_py action
| |
| 128 ], | |
| 129 'outputs': [ | |
| 130 '<(PRODUCT_DIR)/editor/VERSION', | |
| 131 # We never create this file - the build_editor_py action is always r un. | |
| 132 '<(PRODUCT_DIR)/editor/foobar.txt', | |
| 133 ], | |
| 134 'action': [ | |
| 135 'python', | |
| 136 'tools/build_editor.py', | |
| 137 '<(PRODUCT_DIR)/editor', | |
| 138 ], | |
| 139 }, | |
| 140 ], | |
| 141 }, | |
| 142 { | |
| 113 'target_name': 'samples', | 143 'target_name': 'samples', |
| 114 'type': 'none', | 144 'type': 'none', |
| 115 'dependencies': [ | 145 'dependencies': [ |
| 116 'samples/sample_extension/sample_extension.gyp:sample_extension', | 146 'samples/sample_extension/sample_extension.gyp:sample_extension', |
| 117 ], | 147 ], |
| 118 }, | 148 }, |
| 119 ], | 149 ], |
| 120 } | 150 } |
| OLD | NEW |