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': { |
Emily Fortuna
2012/04/17 20:04:09
Remove this entire 'variables' clause and the comm
ahe
2012/04/19 09:03:42
Thank you, good catch.
ahe
2012/04/19 09:54:42
Addressed in https://chromiumcodereview.appspot.co
| |
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', | |
10 }, | 9 }, |
11 'targets': [ | 10 'targets': [ |
12 { | 11 { |
13 'target_name': 'compiler', | 12 'target_name': 'compiler', |
14 'type': 'none', | 13 'type': 'none', |
15 'dependencies': [ | 14 'dependencies': [ |
16 'compiler/dart-compiler.gyp:dartc', | 15 'compiler/dart-compiler.gyp:dartc', |
17 ], | 16 ], |
18 'actions': [] | 17 'actions': [] |
19 }, | 18 }, |
20 { | 19 { |
21 'target_name': 'runtime', | 20 'target_name': 'runtime', |
22 'type': 'none', | 21 'type': 'none', |
23 'dependencies': [ | 22 'dependencies': [ |
24 'runtime/dart-runtime.gyp:dart', | 23 'runtime/dart-runtime.gyp:dart', |
25 'runtime/dart-runtime.gyp:run_vm_tests', | 24 'runtime/dart-runtime.gyp:run_vm_tests', |
26 'runtime/dart-runtime.gyp:process_test', | 25 'runtime/dart-runtime.gyp:process_test', |
27 ], | 26 ], |
28 }, | 27 }, |
29 { | 28 { |
30 'target_name': 'create_sdk', | 29 'target_name': 'create_sdk', |
31 'type': 'none', | 30 'type': 'none', |
32 'conditions': [ | |
33 ['OS=="win"', { | |
34 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | |
35 }], | |
36 ], | |
37 'dependencies': [ | 31 'dependencies': [ |
38 'runtime', | 32 'runtime', |
39 ], | 33 ], |
40 'actions': [ | 34 'actions': [ |
41 { | 35 { |
42 'action_name': 'create_sdk_py', | 36 'action_name': 'create_sdk_py', |
43 'inputs': [ | 37 'inputs': [ |
44 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', | 38 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', |
45 # TODO(dgrove) - change these to dependencies and add dom | 39 # TODO(dgrove) - change these to dependencies and add dom |
46 # dependences once issues 754 and 755 are fixed | 40 # dependences once issues 754 and 755 are fixed |
(...skipping 12 matching lines...) Expand all Loading... | |
59 'tools/create_sdk.py', | 53 'tools/create_sdk.py', |
60 '<(PRODUCT_DIR)/dart-sdk', | 54 '<(PRODUCT_DIR)/dart-sdk', |
61 ], | 55 ], |
62 'message': 'Creating SDK.', | 56 'message': 'Creating SDK.', |
63 }, | 57 }, |
64 ], | 58 ], |
65 }, | 59 }, |
66 { | 60 { |
67 'target_name': 'upload_sdk', | 61 'target_name': 'upload_sdk', |
68 'type': 'none', | 62 'type': 'none', |
69 'conditions': [ | |
70 ['OS=="win"', { | |
71 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | |
72 }], | |
73 ], | |
74 'dependencies': [ | 63 'dependencies': [ |
75 'create_sdk', | 64 'create_sdk', |
76 ], | 65 ], |
77 'actions': [ | 66 'actions': [ |
78 { | 67 { |
79 'action_name': 'upload_sdk_py', | 68 'action_name': 'upload_sdk_py', |
80 'inputs': [ | 69 'inputs': [ |
81 '<(PRODUCT_DIR)/dart-sdk', | 70 '<(PRODUCT_DIR)/dart-sdk', |
82 'tools/upload_sdk.py', | 71 'tools/upload_sdk.py', |
83 ], | 72 ], |
(...skipping 23 matching lines...) Expand all Loading... | |
107 }, | 96 }, |
108 { | 97 { |
109 'target_name': 'api_docs', | 98 'target_name': 'api_docs', |
110 'type': 'none', | 99 'type': 'none', |
111 'dependencies': [ | 100 'dependencies': [ |
112 'utils/apidoc/apidoc.gyp:api_docs', | 101 'utils/apidoc/apidoc.gyp:api_docs', |
113 ], | 102 ], |
114 } | 103 } |
115 ], | 104 ], |
116 } | 105 } |
OLD | NEW |