| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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 # These variables are used in the creation of the .vcproj file on | 7 # These variables are used in the creation of the .vcproj file on |
| 8 # Windows. | 8 # Windows. |
| 9 'cygwin_dir': '../third_party/cygwin', | 9 'cygwin_dir': '../third_party/cygwin', |
| 10 }, | 10 }, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ], | 80 ], |
| 81 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | 81 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 82 }]], | 82 }]], |
| 83 'type': 'none', | 83 'type': 'none', |
| 84 'actions': [ | 84 'actions': [ |
| 85 { | 85 { |
| 86 'action_name': 'generate_frogsh', | 86 'action_name': 'generate_frogsh', |
| 87 'inputs': [ | 87 'inputs': [ |
| 88 '<!@(["python", "scripts/list_frog_files.py"])', | 88 '<!@(["python", "scripts/list_frog_files.py"])', |
| 89 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', | 89 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', |
| 90 'minfrog.dart', | 90 '../tools/testing/frogpad/frogpad.dart', |
| 91 '<(PRODUCT_DIR)/dart', | 91 '<(PRODUCT_DIR)/dart', |
| 92 ], | 92 ], |
| 93 'outputs': [ | 93 'outputs': [ |
| 94 '<(PRODUCT_DIR)/frog/bin/frogsh', | 94 '<(PRODUCT_DIR)/frog/bin/frogpad.js', |
| 95 ], | 95 ], |
| 96 'action': [ | 96 'action': [ |
| 97 'python', | 97 'python', |
| 98 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', | 98 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', |
| 99 '<(PRODUCT_DIR)', | 99 '<(PRODUCT_DIR)', |
| 100 ], | 100 ], |
| 101 'message': 'Generating frogsh file' | 101 'message': 'Generating frogpad.js file' |
| 102 }, | 102 }, |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 ], | 105 ], |
| 106 } | 106 } |
| OLD | NEW |