| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 26 matching lines...) Expand all Loading... |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 'runtime', | 38 'runtime', |
| 39 ], | 39 ], |
| 40 'actions': [ | 40 'actions': [ |
| 41 { | 41 { |
| 42 'action_name': 'create_sdk_py', | 42 'action_name': 'create_sdk_py', |
| 43 'inputs': [ | 43 'inputs': [ |
| 44 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', | 44 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', |
| 45 # TODO(dgrove) - change these to dependencies and add dom | 45 # TODO(dgrove) - change these to dependencies and add dom |
| 46 # dependences once issues 754 and 755 are fixed | 46 # dependences once issues 754 and 755 are fixed |
| 47 'client/html/html_frog.dart', | 47 'lib/html/html_frog.dart', |
| 48 'client/html/html_dartium.dart', | 48 'lib/html/html_dartium.dart', |
| 49 'client/dom/dom.dart', | 49 'lib/dom/dom.dart', |
| 50 'client/dom/src', | 50 'lib/dom/src', |
| 51 'frog/scripts/bootstrap/frogc', | 51 'frog/scripts/bootstrap/frogc', |
| 52 'tools/create_sdk.py', | 52 'tools/create_sdk.py', |
| 53 ], | 53 ], |
| 54 'outputs': [ | 54 'outputs': [ |
| 55 '<(PRODUCT_DIR)/dart-sdk', | 55 '<(PRODUCT_DIR)/dart-sdk', |
| 56 ], | 56 ], |
| 57 'action': [ | 57 'action': [ |
| 58 'python', | 58 'python', |
| 59 'tools/create_sdk.py', | 59 'tools/create_sdk.py', |
| 60 '<(PRODUCT_DIR)/dart-sdk', | 60 '<(PRODUCT_DIR)/dart-sdk', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 # TODO(ahe): Remove dependencies on frog and frogsh, they are | 101 # TODO(ahe): Remove dependencies on frog and frogsh, they are |
| 102 # just here to simplify | 102 # just here to simplify |
| 103 # frog/scripts/buildbot_annotated_steps.py temporarily. | 103 # frog/scripts/buildbot_annotated_steps.py temporarily. |
| 104 'frog/dart-frog.gyp:frog', | 104 'frog/dart-frog.gyp:frog', |
| 105 'frog/dart-frog.gyp:frogsh', | 105 'frog/dart-frog.gyp:frogsh', |
| 106 ], | 106 ], |
| 107 }, | 107 }, |
| 108 ], | 108 ], |
| 109 } | 109 } |
| OLD | NEW |