| 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': [ |
| 11 'compiler/dart-compiler.gyp:dartc', | 11 'compiler/dart-compiler.gyp:dartc', |
| 12 ], | 12 ], |
| 13 'actions': [] | 13 'actions': [] |
| 14 }, | 14 }, |
| 15 { | 15 { |
| 16 'target_name': 'runtime', | 16 'target_name': 'runtime', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 'runtime/dart-runtime.gyp:dart', | 19 'runtime/dart-runtime.gyp:dart', |
| 20 'runtime/dart-runtime.gyp:dart_bin', | 20 'runtime/dart-runtime.gyp:dart_bin', |
| 21 'runtime/dart-runtime.gyp:run_vm_tests', | 21 'runtime/dart-runtime.gyp:run_vm_tests', |
| 22 'runtime/dart-runtime.gyp:process_test', | 22 'runtime/dart-runtime.gyp:process_test', |
| 23 ], | 23 ], |
| 24 }, | 24 }, |
| 25 { | 25 # TODO(ngeoffray): Requires node to be in the path. |
| 26 'target_name': 'frog', | 26 #{ |
| 27 'type': 'none', | 27 # 'target_name': 'frog', |
| 28 'dependencies': [ | 28 # 'type': 'none', |
| 29 'frog/dart-frog.gyp:frog', | 29 # 'dependencies': [ |
| 30 ], | 30 # 'frog/dart-frog.gyp:frog', |
| 31 }, | 31 # ], |
| 32 { | 32 #}, |
| 33 'target_name': 'frogsh', | 33 #{ |
| 34 'type': 'none', | 34 # 'target_name': 'frogsh', |
| 35 'dependencies': [ | 35 # 'type': 'none', |
| 36 'frog/dart-frog.gyp:frogsh', | 36 # 'dependencies': [ |
| 37 ], | 37 # 'frog/dart-frog.gyp:frogsh', |
| 38 }, | 38 # ], |
| 39 #}, |
| 39 # TODO(ngeoffray): Fling does not have proper dependencies, | 40 # TODO(ngeoffray): Fling does not have proper dependencies, |
| 40 # so don't build it for now. | 41 # so don't build it for now. |
| 41 #{ | 42 #{ |
| 42 # 'target_name': 'client', | 43 # 'target_name': 'client', |
| 43 # 'type': 'none', | 44 # 'type': 'none', |
| 44 # 'dependencies': [ | 45 # 'dependencies': [ |
| 45 # 'client/dart.gyp:fling', | 46 # 'client/dart.gyp:fling', |
| 46 # ], | 47 # ], |
| 47 #}, | 48 #}, |
| 48 ], | 49 ], |
| 49 } | 50 } |
| OLD | NEW |