| 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': { |
| 7 # These variables are used in the creation of the .vcproj file on |
| 8 # Windows. |
| 9 'cygwin_dir': 'third_party/cygwin', |
| 10 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 11 }, |
| 6 'targets': [ | 12 'targets': [ |
| 7 { | 13 { |
| 8 'target_name': 'compiler', | 14 'target_name': 'compiler', |
| 9 'type': 'none', | 15 'type': 'none', |
| 10 'dependencies': [ | 16 'dependencies': [ |
| 11 'compiler/dart-compiler.gyp:dartc', | 17 'compiler/dart-compiler.gyp:dartc', |
| 12 ], | 18 ], |
| 13 'actions': [] | 19 'actions': [] |
| 14 }, | 20 }, |
| 15 { | 21 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 32 'target_name': 'frogsh', | 38 'target_name': 'frogsh', |
| 33 'type': 'none', | 39 'type': 'none', |
| 34 'dependencies': [ | 40 'dependencies': [ |
| 35 'frog/dart-frog.gyp:frogsh', | 41 'frog/dart-frog.gyp:frogsh', |
| 36 ], | 42 ], |
| 37 }, | 43 }, |
| 38 { | 44 { |
| 39 'target_name': 'create_sdk', | 45 'target_name': 'create_sdk', |
| 40 'type': 'none', | 46 'type': 'none', |
| 41 'dependencies': [ | 47 'dependencies': [ |
| 42 'compiler', | |
| 43 'frog', | 48 'frog', |
| 44 'runtime', | 49 'runtime', |
| 45 ], | 50 ], |
| 46 'actions': [ | 51 'actions': [ |
| 47 { | 52 { |
| 48 'action_name': 'create_sdk_py', | 53 'action_name': 'create_sdk_py', |
| 49 'inputs': [ | 54 'inputs': [ |
| 50 # TODO(dgrove) - change these to dependencies and add dom | 55 # TODO(dgrove) - change these to dependencies and add dom |
| 51 # dependences once issues 754 and 755 are fixed | 56 # dependences once issues 754 and 755 are fixed |
| 52 'client/html/html.dart', | 57 'client/html/html.dart', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 # so don't build it for now. | 102 # so don't build it for now. |
| 98 #{ | 103 #{ |
| 99 # 'target_name': 'client', | 104 # 'target_name': 'client', |
| 100 # 'type': 'none', | 105 # 'type': 'none', |
| 101 # 'dependencies': [ | 106 # 'dependencies': [ |
| 102 # 'client/dart.gyp:fling', | 107 # 'client/dart.gyp:fling', |
| 103 # ], | 108 # ], |
| 104 #}, | 109 #}, |
| 105 ], | 110 ], |
| 106 } | 111 } |
| OLD | NEW |