| 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 { | |
| 29 'target_name': 'natives_json', | 22 'target_name': 'natives_json', |
| 30 'type': 'none', | 23 'type': 'none', |
| 31 'toolsets': ['host'], | 24 'toolsets': ['host'], |
| 32 'dependencies': [ | 25 'dependencies': [ |
| 33 'src/shared/shared.gyp:natives_json', | 26 'src/shared/shared.gyp:natives_json', |
| 34 ], | 27 ], |
| 35 }, | 28 }, |
| 36 { | 29 { |
| 37 'target_name': 'flashtool', | 30 'target_name': 'flashtool', |
| 38 'type': 'none', | 31 'type': 'none', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 69 { | 62 { |
| 70 'destination': '<(PRODUCT_DIR)', | 63 'destination': '<(PRODUCT_DIR)', |
| 71 'files': [ | 64 'files': [ |
| 72 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)', | 65 'third_party/bin/<(OS)/dart<(EXECUTABLE_SUFFIX)', |
| 73 ], | 66 ], |
| 74 }, | 67 }, |
| 75 ], | 68 ], |
| 76 }, | 69 }, |
| 77 ], | 70 ], |
| 78 } | 71 } |
| OLD | NEW |