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

Side by Side Diff: runtime/observatory/observatory.gypi

Issue 838173002: Make the observatory building be dependent on the pkg_packages target (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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 | no next file » | 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) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, 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 'variables': { 6 'variables': {
7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 24 matching lines...) Expand all
35 ], 35 ],
36 } 36 }
37 ], 37 ],
38 }, 38 },
39 { 39 {
40 'target_name': 'build_observatory', 40 'target_name': 'build_observatory',
41 'type': 'none', 41 'type': 'none',
42 'dependencies': [ 42 'dependencies': [
43 'dart_bootstrap#host', 43 'dart_bootstrap#host',
44 'fetch_observatory_deps#host', 44 'fetch_observatory_deps#host',
45 # We use packages for building
46 '../pkg/pkg.gyp:pkg_packages#target',
45 ], 47 ],
46 'toolsets': ['host'], 48 'toolsets': ['host'],
47 'sources': [ 49 'sources': [
48 'lib/app.dart', 50 'lib/app.dart',
49 'lib/dominator_tree.dart', 51 'lib/dominator_tree.dart',
50 'lib/elements.dart', 52 'lib/elements.dart',
51 'lib/object_graph.dart', 53 'lib/object_graph.dart',
52 'lib/service_common.dart', 54 'lib/service_common.dart',
53 'lib/service_io.dart', 55 'lib/service_io.dart',
54 'lib/service_html.dart', 56 'lib/service_html.dart',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'lib/tracer.dart', 170 'lib/tracer.dart',
169 'web/index.html', 171 'web/index.html',
170 'web/index_devtools.html', 172 'web/index_devtools.html',
171 'web/main.dart', 173 'web/main.dart',
172 ], 174 ],
173 'actions': [ 175 'actions': [
174 { 176 {
175 'action_name': 'pub_build_observatory', 177 'action_name': 'pub_build_observatory',
176 'inputs': [ 178 'inputs': [
177 '../../tools/observatory_tool.py', 179 '../../tools/observatory_tool.py',
180 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
178 '<@(_sources)', 181 '<@(_sources)',
179 ], 182 ],
180 'outputs': [ 183 'outputs': [
181 '<(PRODUCT_DIR)/observatory/build/web/index.html', 184 '<(PRODUCT_DIR)/observatory/build/web/index.html',
182 '<(PRODUCT_DIR)/observatory/build/web/index.html_bootstrap.dart.js', 185 '<(PRODUCT_DIR)/observatory/build/web/index.html_bootstrap.dart.js',
183 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html', 186 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html',
184 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html_bootstrap. dart.js', 187 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html_bootstrap. dart.js',
185 ], 188 ],
186 'action': [ 189 'action': [
187 'python', 190 'python',
(...skipping 27 matching lines...) Expand all
215 '--package-root', '<(PRODUCT_DIR)/packages', 218 '--package-root', '<(PRODUCT_DIR)/packages',
216 '--dart-executable', 219 '--dart-executable',
217 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)', 220 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)',
218 '--directory', '<(PRODUCT_DIR)/observatory/', 221 '--directory', '<(PRODUCT_DIR)/observatory/',
219 '--command', 'deploy', 222 '--command', 'deploy',
220 ], 223 ],
221 } 224 }
222 ], 225 ],
223 }, 226 },
224 ], 227 ],
225 } 228 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698