| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2011, 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': 'frog', | |
| 9 'dependencies': [ | |
| 10 '../runtime/dart-runtime.gyp:dart', | |
| 11 '../third_party/v8/src/d8.gyp:d8', | |
| 12 ], | |
| 13 'type': 'none', | |
| 14 'actions': [ | |
| 15 { | |
| 16 'action_name': 'generate_frog', | |
| 17 'inputs': [ | |
| 18 '<!@(["python", "../tools/list_files.py", "^([^/]*|lib/.*)\\.(dart|g
ypi|js)$", "."])', | |
| 19 'scripts/bootstrap/frog_bootstrap_wrapper.py', | |
| 20 'scripts/bootstrap/frog_wrapper.py', | |
| 21 'frog.py', | |
| 22 '<(PRODUCT_DIR)/dart', | |
| 23 ], | |
| 24 'outputs': [ | |
| 25 '<(PRODUCT_DIR)/frog/bin/frog', | |
| 26 ], | |
| 27 'action': [ | |
| 28 'python', | |
| 29 'scripts/bootstrap/frog_bootstrap_wrapper.py', | |
| 30 '<(PRODUCT_DIR)', | |
| 31 ], | |
| 32 'message': 'Generating frog file' | |
| 33 }, | |
| 34 ], | |
| 35 }, | |
| 36 ], | |
| 37 } | |
| OLD | NEW |