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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
107 ], | 107 ], |
108 }, | 108 }, |
109 { | 109 { |
110 'target_name': 'api_docs', | 110 'target_name': 'api_docs', |
111 'type': 'none', | 111 'type': 'none', |
112 'dependencies': [ | 112 'dependencies': [ |
113 'utils/apidoc/apidoc.gyp:api_docs', | 113 'utils/apidoc/apidoc.gyp:api_docs', |
114 ], | 114 ], |
115 }, | 115 }, |
116 { | 116 { |
117 'target_name': 'editor', | |
118 'type': 'none', | |
119 'dependencies': [ | |
120 'editor/build/generated/editor_deps.gyp:editor_deps', | |
121 | |
122 # This dependency on create_sdk does not mean that the Editor | |
123 # is rebuilt if the SDK is. It only means that when you build | |
124 # the Editor, you should also build the SDK. If we wanted to | |
125 # make sure that the editor is rebuilt when the SDK is, we | |
126 # should list a *file* in PRODUCT_DIR which the action below | |
127 # uses as input. | |
ricow1
2013/01/31 14:42:11
Should we state here the reason why we don't want
ahe
2013/02/04 11:12:05
Done.
| |
128 'create_sdk', | |
129 ], | |
130 'actions': [ | |
131 { | |
132 'action_name': 'create_editor_py', | |
133 'inputs': [ | |
134 'tools/create_editor.py', | |
135 '<(SHARED_INTERMEDIATE_DIR)/editor_deps/editor.stamp', | |
136 '<!@(["python", "tools/list_files.py", "", "editor/tools/features/co m.google.dart.tools.deploy.feature_releng"])', | |
137 ], | |
138 'outputs': [ | |
139 '<(PRODUCT_DIR)/editor/VERSION', | |
140 ], | |
141 'action': [ | |
142 'python', | |
143 'tools/create_editor.py', | |
144 '--out', '<(PRODUCT_DIR)/editor', | |
145 '--build', '<(INTERMEDIATE_DIR)', | |
146 ], | |
147 'message': 'Creating editor.', | |
148 }, | |
149 ], | |
150 }, | |
151 { | |
117 'target_name': 'samples', | 152 'target_name': 'samples', |
118 'type': 'none', | 153 'type': 'none', |
119 'dependencies': [ | 154 'dependencies': [ |
120 'samples/openglui/openglui.gyp:openglui_sample', | 155 'samples/openglui/openglui.gyp:openglui_sample', |
121 ], | 156 ], |
122 'conditions': [ | 157 'conditions': [ |
123 ['OS!="android"', { | 158 ['OS!="android"', { |
124 'dependencies': [ | 159 'dependencies': [ |
125 'samples/sample_extension/sample_extension.gyp:sample_extension', | 160 'samples/sample_extension/sample_extension.gyp:sample_extension', |
126 ], | 161 ], |
127 }, | 162 }, |
128 ], | 163 ], |
129 ] | 164 ] |
130 }, | 165 }, |
131 { | 166 { |
132 'target_name': 'packages', | 167 'target_name': 'packages', |
133 'type': 'none', | 168 'type': 'none', |
134 'dependencies': [ | 169 'dependencies': [ |
135 'pkg/pkg.gyp:pkg_packages', | 170 'pkg/pkg.gyp:pkg_packages', |
136 ], | 171 ], |
137 }, | 172 }, |
138 ], | 173 ], |
139 } | 174 } |
OLD | NEW |