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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'compiler', | 8 'target_name': 'compiler', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 17 matching lines...) Expand all Loading... | |
28 'frog/dart-frog.gyp:frog', | 28 'frog/dart-frog.gyp:frog', |
29 ], | 29 ], |
30 }, | 30 }, |
31 { | 31 { |
32 'target_name': 'frogsh', | 32 'target_name': 'frogsh', |
33 'type': 'none', | 33 'type': 'none', |
34 'dependencies': [ | 34 'dependencies': [ |
35 'frog/dart-frog.gyp:frogsh', | 35 'frog/dart-frog.gyp:frogsh', |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | |
39 'target_name': 'sdk', | |
40 'type': 'none', | |
41 'dependencies': [ | |
42 'frog', | |
43 'runtime', | |
44 ], | |
45 'actions': [ | |
46 { | |
47 'action_name': 'create_sdk', | |
48 'inputs': [], | |
Ivan Posva
2011/11/22 06:54:42
You need to have the script file be one of the inp
dgrove
2011/11/22 19:18:51
Done.
| |
49 'outputs': [], | |
50 'action': [ | |
51 'python', | |
52 'tools/create_sdk.py', | |
53 ], | |
54 'message': 'Creating SDK', | |
Ivan Posva
2011/11/22 06:54:42
.
dgrove
2011/11/22 19:18:51
Done.
| |
55 }, | |
56 ], | |
57 }, | |
38 # TODO(ngeoffray): Fling does not have proper dependencies, | 58 # TODO(ngeoffray): Fling does not have proper dependencies, |
39 # so don't build it for now. | 59 # so don't build it for now. |
40 #{ | 60 #{ |
41 # 'target_name': 'client', | 61 # 'target_name': 'client', |
42 # 'type': 'none', | 62 # 'type': 'none', |
43 # 'dependencies': [ | 63 # 'dependencies': [ |
44 # 'client/dart.gyp:fling', | 64 # 'client/dart.gyp:fling', |
45 # ], | 65 # ], |
46 #}, | 66 #}, |
47 ], | 67 ], |
48 } | 68 } |
OLD | NEW |