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 }, |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'compiler', | 13 'target_name': 'compiler', |
14 'type': 'none', | 14 'type': 'none', |
15 'dependencies': [ | 15 'dependencies': [ |
16 'compiler/dart-compiler.gyp:dartc', | 16 'compiler/dart-compiler.gyp:darta', |
17 ], | 17 ], |
18 'actions': [] | 18 'actions': [] |
19 }, | 19 }, |
20 { | 20 { |
21 'target_name': 'runtime', | 21 'target_name': 'runtime', |
22 'type': 'none', | 22 'type': 'none', |
23 'dependencies': [ | 23 'dependencies': [ |
24 'runtime/dart-runtime.gyp:dart', | 24 'runtime/dart-runtime.gyp:dart', |
25 'runtime/dart-runtime.gyp:run_vm_tests', | 25 'runtime/dart-runtime.gyp:run_vm_tests', |
26 'runtime/dart-runtime.gyp:process_test', | 26 'runtime/dart-runtime.gyp:process_test', |
(...skipping 16 matching lines...) Expand all Loading... |
43 { | 43 { |
44 'target_name': 'create_sdk', | 44 'target_name': 'create_sdk', |
45 'type': 'none', | 45 'type': 'none', |
46 'conditions': [ | 46 'conditions': [ |
47 ['OS=="win"', { | 47 ['OS=="win"', { |
48 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | 48 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
49 }], | 49 }], |
50 ], | 50 ], |
51 'dependencies': [ | 51 'dependencies': [ |
52 'runtime', | 52 'runtime', |
| 53 'compiler' |
53 ], | 54 ], |
54 'actions': [ | 55 'actions': [ |
55 { | 56 { |
56 'action_name': 'create_sdk_py', | 57 'action_name': 'create_sdk_py', |
57 'inputs': [ | 58 'inputs': [ |
58 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', | 59 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', |
59 # TODO(dgrove) - change these to dependencies and add dom | 60 # TODO(dgrove) - change these to dependencies and add dom |
60 # dependences once issues 754 and 755 are fixed | 61 # dependences once issues 754 and 755 are fixed |
61 'client/html/html_frog.dart', | 62 'client/html/html_frog.dart', |
62 'client/html/html_dartium.dart', | 63 'client/html/html_dartium.dart', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'action': [ | 102 'action': [ |
102 'python', | 103 'python', |
103 'tools/upload_sdk.py', | 104 'tools/upload_sdk.py', |
104 '<(PRODUCT_DIR)/dart-sdk' | 105 '<(PRODUCT_DIR)/dart-sdk' |
105 ], | 106 ], |
106 }, | 107 }, |
107 ], | 108 ], |
108 } | 109 } |
109 ], | 110 ], |
110 } | 111 } |
OLD | NEW |