| 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 { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 '--directory', 'observatory', | 37 '--directory', 'observatory', |
| 38 '--command', 'get', | 38 '--command', 'get', |
| 39 ], | 39 ], |
| 40 } | 40 } |
| 41 ], | 41 ], |
| 42 }, | 42 }, |
| 43 { | 43 { |
| 44 'target_name': 'build_observatory', | 44 'target_name': 'build_observatory', |
| 45 'type': 'none', | 45 'type': 'none', |
| 46 'dependencies': [ | 46 'dependencies': [ |
| 47 'dart_bootstrap#host', |
| 47 'fetch_observatory_deps#host', | 48 'fetch_observatory_deps#host', |
| 48 ], | 49 ], |
| 49 'toolsets': ['host'], | 50 'toolsets': ['host'], |
| 50 'includes': [ | 51 'includes': [ |
| 51 'observatory_sources.gypi', | 52 'observatory_sources.gypi', |
| 52 ], | 53 ], |
| 53 'actions': [ | 54 'actions': [ |
| 54 { | 55 { |
| 55 'action_name': 'pub_build_observatory', | 56 'action_name': 'pub_build_observatory', |
| 56 'inputs': [ | 57 'inputs': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 '--dart-executable', | 91 '--dart-executable', |
| 91 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', | 92 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', |
| 92 '--directory', '<(PRODUCT_DIR)/observatory/', | 93 '--directory', '<(PRODUCT_DIR)/observatory/', |
| 93 '--command', 'deploy', | 94 '--command', 'deploy', |
| 94 ], | 95 ], |
| 95 } | 96 } |
| 96 ], | 97 ], |
| 97 }, | 98 }, |
| 98 ], | 99 ], |
| 99 } | 100 } |
| OLD | NEW |