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

Side by Side Diff: dart.gyp

Issue 11343027: Make the editor build callable from tools/build.py (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml » ('j') | no next file with comments »
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698