| 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 # 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. | |
| 10 '../tools/gyp/xcode.gypi', | |
| 11 # TODO(mmendez): Add the appropriate gypi includes here. | 9 # TODO(mmendez): Add the appropriate gypi includes here. |
| 12 ], | 10 ], |
| 13 'targets': [ | 11 'targets': [ |
| 14 { | 12 { |
| 15 'target_name': 'dartc', | 13 'target_name': 'dartc', |
| 16 'type': 'none', | 14 'type': 'none', |
| 17 'actions': [ | 15 'actions': [ |
| 18 { | 16 { |
| 19 'action_name': 'Build and test', | 17 'action_name': 'Build and test', |
| 20 'inputs': [ | 18 'inputs': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 }, | 30 }, |
| 33 ], | 31 ], |
| 34 }, | 32 }, |
| 35 { | 33 { |
| 36 # GYP won't generate a catch-all target if there's only one target. | 34 # GYP won't generate a catch-all target if there's only one target. |
| 37 'target_name': 'dummy', | 35 'target_name': 'dummy', |
| 38 'type': 'none', | 36 'type': 'none', |
| 39 }, | 37 }, |
| 40 ], | 38 ], |
| 41 } | 39 } |
| OLD | NEW |