| 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 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | |
| 11 }, | 10 }, |
| 12 'targets': [ | 11 'targets': [ |
| 13 { | 12 { |
| 14 'target_name': 'compiler', | 13 'target_name': 'compiler', |
| 15 'type': 'none', | 14 'type': 'none', |
| 16 'dependencies': [ | 15 'dependencies': [ |
| 17 'compiler/dart-compiler.gyp:dartc', | 16 'compiler/dart-compiler.gyp:dartc', |
| 18 ], | 17 ], |
| 19 'actions': [] | 18 'actions': [] |
| 20 }, | 19 }, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 { | 36 { |
| 38 'target_name': 'frogsh', | 37 'target_name': 'frogsh', |
| 39 'type': 'none', | 38 'type': 'none', |
| 40 'dependencies': [ | 39 'dependencies': [ |
| 41 'frog/dart-frog.gyp:frogsh', | 40 'frog/dart-frog.gyp:frogsh', |
| 42 ], | 41 ], |
| 43 }, | 42 }, |
| 44 { | 43 { |
| 45 'target_name': 'create_sdk', | 44 'target_name': 'create_sdk', |
| 46 'type': 'none', | 45 'type': 'none', |
| 46 'conditions': [ |
| 47 ['OS=="win"', { |
| 48 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 49 }], |
| 50 ], |
| 47 'dependencies': [ | 51 'dependencies': [ |
| 48 'frog', | 52 'frog', |
| 49 'runtime', | 53 'runtime', |
| 50 ], | 54 ], |
| 51 'actions': [ | 55 'actions': [ |
| 52 { | 56 { |
| 53 'action_name': 'create_sdk_py', | 57 'action_name': 'create_sdk_py', |
| 54 'inputs': [ | 58 'inputs': [ |
| 55 # TODO(dgrove) - change these to dependencies and add dom | 59 # TODO(dgrove) - change these to dependencies and add dom |
| 56 # dependences once issues 754 and 755 are fixed | 60 # dependences once issues 754 and 755 are fixed |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 # so don't build it for now. | 106 # so don't build it for now. |
| 103 #{ | 107 #{ |
| 104 # 'target_name': 'client', | 108 # 'target_name': 'client', |
| 105 # 'type': 'none', | 109 # 'type': 'none', |
| 106 # 'dependencies': [ | 110 # 'dependencies': [ |
| 107 # 'client/dart.gyp:fling', | 111 # 'client/dart.gyp:fling', |
| 108 # ], | 112 # ], |
| 109 #}, | 113 #}, |
| 110 ], | 114 ], |
| 111 } | 115 } |
| OLD | NEW |