| OLD | NEW |
| 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch 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.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'fletch-vm', | 8 'target_name': 'fletch-vm', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 'src/vm/vm.gyp:fletch-vm', | 11 'src/vm/vm.gyp:fletch-vm', |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 { | 14 { |
| 15 'target_name': 'c_test_library', | 15 'target_name': 'c_test_library', |
| 16 'type': 'none', | 16 'type': 'none', |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 'src/vm/vm.gyp:ffi_test_library', | 18 'src/vm/vm.gyp:ffi_test_library', |
| 19 ], | 19 ], |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 'target_name': 'mdns_extension_lib', |
| 23 'type': 'none', |
| 24 'dependencies': [ |
| 25 'src/pkg/mdns/mdns.gyp:mdns_extension_lib', |
| 26 ], |
| 27 }, |
| 28 { |
| 22 'target_name': 'natives_json', | 29 'target_name': 'natives_json', |
| 23 'type': 'none', | 30 'type': 'none', |
| 24 'toolsets': ['host'], | 31 'toolsets': ['host'], |
| 25 'dependencies': [ | 32 'dependencies': [ |
| 26 'src/shared/shared.gyp:natives_json', | 33 'src/shared/shared.gyp:natives_json', |
| 27 ], | 34 ], |
| 28 }, | 35 }, |
| 29 { | 36 { |
| 30 'target_name': 'flashtool', | 37 'target_name': 'flashtool', |
| 31 'type': 'none', | 38 'type': 'none', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 62 { | 69 { |
| 63 'destination': '<(PRODUCT_DIR)', | 70 'destination': '<(PRODUCT_DIR)', |
| 64 'files': [ | 71 'files': [ |
| 65 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)', | 72 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)', |
| 66 ], | 73 ], |
| 67 }, | 74 }, |
| 68 ], | 75 ], |
| 69 }, | 76 }, |
| 70 ], | 77 ], |
| 71 } | 78 } |
| OLD | NEW |