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 851153002: More fixes for observatory build dependencies (Closed) Base URL: https://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 {
11 'target_name': 'fetch_observatory_deps', 11 'target_name': 'fetch_observatory_deps',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 'dart_bootstrap#host', 14 'dart_bootstrap#host',
15 # We use packages for building 15 # We use packages for building
16 '../pkg/pkg.gyp:pkg_packages#target', 16 '../pkg/pkg.gyp:pkg_packages#target',
17 ], 17 ],
18 'toolsets': ['host'], 18 'toolsets': ['host'],
19 'actions': [ 19 'actions': [
20 { 20 {
21 'action_name': 'get_obsevatory_dependencies', 21 'action_name': 'get_obsevatory_dependencies',
22 'inputs': [ 22 'inputs': [
23 '../../tools/observatory_tool.py', 23 '../../tools/observatory_tool.py',
24 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
24 'pubspec.yaml', 25 'pubspec.yaml',
25 ], 26 ],
26 'outputs': [ 27 'outputs': [
27 'pubspec.lock' 28 'pubspec.lock'
28 ], 29 ],
29 'action': [ 30 'action': [
30 'python', 31 'python',
31 '../tools/observatory_tool.py', 32 '../tools/observatory_tool.py',
32 '--package-root', '<(PRODUCT_DIR)/packages', 33 '--package-root', '<(PRODUCT_DIR)/packages',
33 '--dart-executable', 34 '--dart-executable',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'web/index.html', 174 'web/index.html',
174 'web/index_devtools.html', 175 'web/index_devtools.html',
175 'web/main.dart', 176 'web/main.dart',
176 ], 177 ],
177 'actions': [ 178 'actions': [
178 { 179 {
179 'action_name': 'pub_build_observatory', 180 'action_name': 'pub_build_observatory',
180 'inputs': [ 181 'inputs': [
181 '../../tools/observatory_tool.py', 182 '../../tools/observatory_tool.py',
182 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 183 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
184 'pubspec.lock',
183 '<@(_sources)', 185 '<@(_sources)',
184 ], 186 ],
185 'outputs': [ 187 'outputs': [
186 '<(PRODUCT_DIR)/observatory/build/web/index.html', 188 '<(PRODUCT_DIR)/observatory/build/web/index.html',
187 '<(PRODUCT_DIR)/observatory/build/web/index.html_bootstrap.dart.js', 189 '<(PRODUCT_DIR)/observatory/build/web/index.html_bootstrap.dart.js',
188 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html', 190 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html',
189 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html_bootstrap. dart.js', 191 '<(PRODUCT_DIR)/observatory/build/web/index_devtools.html_bootstrap. dart.js',
190 ], 192 ],
191 'action': [ 193 'action': [
192 'python', 194 'python',
(...skipping 28 matching lines...) Expand all
221 '--dart-executable', 223 '--dart-executable',
222 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)', 224 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)',
223 '--directory', '<(PRODUCT_DIR)/observatory/', 225 '--directory', '<(PRODUCT_DIR)/observatory/',
224 '--command', 'deploy', 226 '--command', 'deploy',
225 ], 227 ],
226 } 228 }
227 ], 229 ],
228 }, 230 },
229 ], 231 ],
230 } 232 }
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