Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| 16 '../pkg/pkg.gyp:pkg_packages#target', | |
| 15 ], | 17 ], |
| 16 'toolsets': ['host'], | 18 'toolsets': ['host'], |
| 17 'actions': [ | 19 'actions': [ |
| 18 { | 20 { |
| 19 'action_name': 'get_obsevatory_dependencies', | 21 'action_name': 'get_obsevatory_dependencies', |
| 20 'inputs': [ | 22 'inputs': [ |
| 21 '../../tools/observatory_tool.py', | 23 '../../tools/observatory_tool.py', |
|
ricow1
2015/01/15 19:31:37
You need:
'<(SHARED_INTERMEDIATE_DIR)/packages.sta
| |
| 22 'pubspec.yaml', | 24 'pubspec.yaml', |
| 23 ], | 25 ], |
| 24 'outputs': [ | 26 'outputs': [ |
| 25 'pubspec.lock' | 27 'pubspec.lock' |
| 26 ], | 28 ], |
| 27 'action': [ | 29 'action': [ |
| 28 'python', | 30 'python', |
| 29 '../tools/observatory_tool.py', | 31 '../tools/observatory_tool.py', |
| 30 '--package-root', '<(PRODUCT_DIR)/packages', | 32 '--package-root', '<(PRODUCT_DIR)/packages', |
| 31 '--dart-executable', | 33 '--dart-executable', |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 219 '--dart-executable', | 221 '--dart-executable', |
| 220 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)', | 222 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)', |
| 221 '--directory', '<(PRODUCT_DIR)/observatory/', | 223 '--directory', '<(PRODUCT_DIR)/observatory/', |
| 222 '--command', 'deploy', | 224 '--command', 'deploy', |
| 223 ], | 225 ], |
| 224 } | 226 } |
| 225 ], | 227 ], |
| 226 }, | 228 }, |
| 227 ], | 229 ], |
| 228 } | 230 } |
| OLD | NEW |