| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2016, 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': 'dartdevc', | |
| 9 'type': 'none', | |
| 10 'dependencies': [ | |
| 11 '../../runtime/dart-runtime.gyp:dart', | |
| 12 ], | |
| 13 'actions': [ | |
| 14 { | |
| 15 'action_name': 'generate_dartdevc_snapshot', | |
| 16 'inputs': [ | |
| 17 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | |
| 18 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart', | |
| 19 '<!@(["python", "../../tools/list_dart_files.py", "relative", ' | |
| 20 '"../../pkg/dev_compiler/bin"])', | |
| 21 '<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp', | |
| 22 ], | |
| 23 'outputs': [ | |
| 24 '<(SHARED_INTERMEDIATE_DIR)/dartdevc.dart.snapshot', | |
| 25 ], | |
| 26 'action': [ | |
| 27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | |
| 28 '--packages=../../.packages', | |
| 29 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartdevc.dart.snapshot', | |
| 30 '../../pkg/dev_compiler/bin/dartdevc.dart' | |
| 31 ], | |
| 32 }, | |
| 33 ], | |
| 34 }, | |
| 35 ], | |
| 36 } | |
| OLD | NEW |