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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 ], | 53 ], |
54 'action': [ | 54 'action': [ |
55 'python', | 55 'python', |
56 'tools/create_sdk.py', | 56 'tools/create_sdk.py', |
57 '<(PRODUCT_DIR)/sdk' | 57 '<(PRODUCT_DIR)/sdk' |
58 ], | 58 ], |
59 'message': 'Creating SDK.', | 59 'message': 'Creating SDK.', |
60 }, | 60 }, |
61 ], | 61 ], |
62 }, | 62 }, |
| 63 { |
| 64 'target_name': 'upload_sdk', |
| 65 'type': 'none', |
| 66 'dependencies': [ |
| 67 'sdk', |
| 68 ], |
| 69 'actions': [ |
| 70 { |
| 71 'action_name': 'upload_sdk', |
| 72 'inputs': [ |
| 73 '<(PRODUCT_DIR)/sdk', |
| 74 'tools/upload_sdk.py', |
| 75 ], |
| 76 'outputs': [ |
| 77 '<(PRODUCT_DIR)/sdk', |
| 78 ], |
| 79 'action': [ |
| 80 'python', |
| 81 'tools/upload_sdk.py', |
| 82 '<(PRODUCT_DIR)/sdk' |
| 83 ], |
| 84 }, |
| 85 ], |
| 86 } |
63 # TODO(ngeoffray): Fling does not have proper dependencies, | 87 # TODO(ngeoffray): Fling does not have proper dependencies, |
64 # so don't build it for now. | 88 # so don't build it for now. |
65 #{ | 89 #{ |
66 # 'target_name': 'client', | 90 # 'target_name': 'client', |
67 # 'type': 'none', | 91 # 'type': 'none', |
68 # 'dependencies': [ | 92 # 'dependencies': [ |
69 # 'client/dart.gyp:fling', | 93 # 'client/dart.gyp:fling', |
70 # ], | 94 # ], |
71 #}, | 95 #}, |
72 ], | 96 ], |
73 } | 97 } |
OLD | NEW |