| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'analysis_server', | |
| 9 'type': 'none', | |
| 10 'dependencies': [ | |
| 11 '../../runtime/dart-runtime.gyp:dart', | |
| 12 '../../pkg/pkg_files.gyp:pkg_files_stamp' | |
| 13 ], | |
| 14 'actions': [ | |
| 15 { | |
| 16 'action_name': 'generate_analysis_server_snapshot', | |
| 17 'inputs': [ | |
| 18 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | |
| 19 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart', | |
| 20 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', | |
| 21 ], | |
| 22 'outputs': [ | |
| 23 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', | |
| 24 ], | |
| 25 'action': [ | |
| 26 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | |
| 27 '--packages=../../.packages', | |
| 28 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot
', | |
| 29 '../../pkg/analysis_server/bin/server.dart', | |
| 30 ], | |
| 31 }, | |
| 32 ], | |
| 33 }, | |
| 34 ], | |
| 35 } | |
| OLD | NEW |