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 |
ricow1
2013/01/16 19:05:33
why is this file called dartium.gyp?
devoncarew
2013/01/16 19:09:16
I am wholly unfamiliar with this file; I'm guessin
| |
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 # TODO(vsm): Remove this file and use dart.gyp once that can be pulled | 5 # TODO(vsm): Remove this file and use dart.gyp once that can be pulled |
6 # into the dartium build. | 6 # into the dartium build. |
7 { | 7 { |
8 'includes': [ | 8 'includes': [ |
9 # TODO(iposva): Move shared gyp setup to a shared location. | 9 # TODO(iposva): Move shared gyp setup to a shared location. |
10 '../tools/gyp/xcode.gypi', | 10 '../tools/gyp/xcode.gypi', |
11 # TODO(mmendez): Add the appropriate gypi includes here. | 11 # TODO(mmendez): Add the appropriate gypi includes here. |
12 ], | 12 ], |
13 'targets': [ | 13 'targets': [ |
14 { | 14 { |
15 'target_name': 'dartc', | 15 'target_name': 'dartc', |
16 'type': 'none', | 16 'type': 'none', |
17 'actions': [ | 17 'actions': [ |
18 { | 18 { |
19 'action_name': 'Build and test', | 19 'action_name': 'Build and test', |
20 'inputs': [ | 20 'inputs': [ |
21 ], | 21 ], |
22 'outputs': [ | 22 'outputs': [ |
23 'dummy_target', | 23 'dummy_target', |
24 ], | 24 ], |
25 'action' : [ | 25 'action' : [ |
26 '../third_party/apache_ant/v1_7_1/bin/ant', | 26 '../third_party/apache_ant/1.8.4/bin/ant', |
27 '-Dbuild.dir=<(PRODUCT_DIR)/ant-out', | 27 '-Dbuild.dir=<(PRODUCT_DIR)/ant-out', |
28 'clean', | 28 'clean', |
29 'dist', | 29 'dist', |
30 ], | 30 ], |
31 'message': 'Building dartc.', | 31 'message': 'Building dartc.', |
32 }, | 32 }, |
33 ], | 33 ], |
34 }, | 34 }, |
35 { | 35 { |
36 # GYP won't generate a catch-all target if there's only one target. | 36 # GYP won't generate a catch-all target if there's only one target. |
37 'target_name': 'dummy', | 37 'target_name': 'dummy', |
38 'type': 'none', | 38 'type': 'none', |
39 }, | 39 }, |
40 ], | 40 ], |
41 } | 41 } |
OLD | NEW |