| 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 24 matching lines...) Expand all Loading... |
| 35 }], | 35 }], |
| 36 ], | 36 ], |
| 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 'lib/_internal/config/import_any.config', | |
| 46 'lib/_internal/config/import_dart2js.config', | |
| 47 'lib/_internal/config/import_dartium.config', | |
| 48 'lib/_internal/config/import_frog.config', | |
| 49 'lib/_internal/config/import_vm.config', | |
| 50 # TODO(dgrove) - change these to dependencies and add dom | 45 # TODO(dgrove) - change these to dependencies and add dom |
| 51 # dependences once issues 754 and 755 are fixed | 46 # dependences once issues 754 and 755 are fixed |
| 52 'lib/html/html_frog.dart', | 47 'lib/html/html_frog.dart', |
| 53 'lib/html/html_dartium.dart', | 48 'lib/html/html_dartium.dart', |
| 54 'lib/dom/dom.dart', | 49 'lib/dom/dom.dart', |
| 55 'lib/dom/src', | 50 'lib/dom/src', |
| 56 'frog/scripts/bootstrap/frogc', | 51 'frog/scripts/bootstrap/frogc', |
| 57 'tools/create_sdk.py', | 52 'tools/create_sdk.py', |
| 58 ], | 53 ], |
| 59 'outputs': [ | 54 'outputs': [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 }, | 107 }, |
| 113 { | 108 { |
| 114 'target_name': 'api_docs', | 109 'target_name': 'api_docs', |
| 115 'type': 'none', | 110 'type': 'none', |
| 116 'dependencies': [ | 111 'dependencies': [ |
| 117 'utils/apidoc/apidoc.gyp:api_docs', | 112 'utils/apidoc/apidoc.gyp:api_docs', |
| 118 ], | 113 ], |
| 119 } | 114 } |
| 120 ], | 115 ], |
| 121 } | 116 } |
| OLD | NEW |