| 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', | |
| 17 ], | 15 ], |
| 18 'toolsets': ['host'], | 16 'toolsets': ['host'], |
| 19 'actions': [ | 17 'actions': [ |
| 20 { | 18 { |
| 21 'action_name': 'get_obsevatory_dependencies', | 19 'action_name': 'get_obsevatory_dependencies', |
| 22 'inputs': [ | 20 'inputs': [ |
| 23 '../../tools/observatory_tool.py', | 21 '../../tools/observatory_tool.py', |
| 24 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 22 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', |
| 25 'pubspec.yaml', | 23 'pubspec.yaml', |
| 26 ], | 24 ], |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 '--dart-executable', | 91 '--dart-executable', |
| 94 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', | 92 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', |
| 95 '--directory', '<(PRODUCT_DIR)/observatory/', | 93 '--directory', '<(PRODUCT_DIR)/observatory/', |
| 96 '--command', 'deploy', | 94 '--command', 'deploy', |
| 97 ], | 95 ], |
| 98 } | 96 } |
| 99 ], | 97 ], |
| 100 }, | 98 }, |
| 101 ], | 99 ], |
| 102 } | 100 } |
| OLD | NEW |