Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: dart/dart.gyp

Issue 12090092: Build the Editor from GYP/build.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | dart/editor/build/.gitignore » ('j') | dart/editor/build/generate_sources.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | dart/editor/build/.gitignore » ('j') | dart/editor/build/generate_sources.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698