| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'tools/create_sdk.py', | 74 'tools/create_sdk.py', |
| 75 '<(PRODUCT_DIR)/dart-sdk', | 75 '<(PRODUCT_DIR)/dart-sdk', |
| 76 ], | 76 ], |
| 77 'message': 'Creating SDK.', | 77 'message': 'Creating SDK.', |
| 78 }, | 78 }, |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 { | 81 { |
| 82 'target_name': 'upload_sdk', | 82 'target_name': 'upload_sdk', |
| 83 'type': 'none', | 83 'type': 'none', |
| 84 'conditions': [ |
| 85 ['OS=="win"', { |
| 86 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 87 }], |
| 88 ], |
| 84 'dependencies': [ | 89 'dependencies': [ |
| 85 'create_sdk', | 90 'create_sdk', |
| 86 ], | 91 ], |
| 87 'actions': [ | 92 'actions': [ |
| 88 { | 93 { |
| 89 'action_name': 'upload_sdk_py', | 94 'action_name': 'upload_sdk_py', |
| 90 'inputs': [ | 95 'inputs': [ |
| 91 '<(PRODUCT_DIR)/dart-sdk', | 96 '<(PRODUCT_DIR)/dart-sdk', |
| 92 'tools/upload_sdk.py', | 97 'tools/upload_sdk.py', |
| 93 ], | 98 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 106 # so don't build it for now. | 111 # so don't build it for now. |
| 107 #{ | 112 #{ |
| 108 # 'target_name': 'client', | 113 # 'target_name': 'client', |
| 109 # 'type': 'none', | 114 # 'type': 'none', |
| 110 # 'dependencies': [ | 115 # 'dependencies': [ |
| 111 # 'client/dart.gyp:fling', | 116 # 'client/dart.gyp:fling', |
| 112 # ], | 117 # ], |
| 113 #}, | 118 #}, |
| 114 ], | 119 ], |
| 115 } | 120 } |
| OLD | NEW |