| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../../', | 8 '../../', |
| 9 ], | 9 ], |
| 10 }, | 10 }, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'event_handler_linux.cc', | 25 'event_handler_linux.cc', |
| 26 'ffi.h', | 26 'ffi.h', |
| 27 'ffi.cc', | 27 'ffi.cc', |
| 28 'ffi_linux.cc', | 28 'ffi_linux.cc', |
| 29 'ffi_macos.cc', | 29 'ffi_macos.cc', |
| 30 'ffi_posix.cc', | 30 'ffi_posix.cc', |
| 31 'fletch.cc', | 31 'fletch.cc', |
| 32 'fletch_api_impl.cc', | 32 'fletch_api_impl.cc', |
| 33 'heap.cc', | 33 'heap.cc', |
| 34 'heap_validator.cc', | 34 'heap_validator.cc', |
| 35 'immutable_heap.cc', |
| 35 'gc_thread.cc', | 36 'gc_thread.cc', |
| 36 'interpreter.cc', | 37 'interpreter.cc', |
| 37 'intrinsics.cc', | 38 'intrinsics.cc', |
| 38 'lookup_cache.cc', | 39 'lookup_cache.cc', |
| 39 'natives.cc', | 40 'natives.cc', |
| 40 'object.cc', | 41 'object.cc', |
| 41 'object_list.cc', | 42 'object_list.cc', |
| 42 'object_map.cc', | 43 'object_map.cc', |
| 43 'object_memory.cc', | 44 'object_memory.cc', |
| 44 'port.cc', | 45 'port.cc', |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'target_name': 'ffi_test_library', | 226 'target_name': 'ffi_test_library', |
| 226 'type': 'shared_library', | 227 'type': 'shared_library', |
| 227 'dependencies': [ | 228 'dependencies': [ |
| 228 ], | 229 ], |
| 229 'sources': [ | 230 'sources': [ |
| 230 'ffi_test_library.c', | 231 'ffi_test_library.c', |
| 231 ], | 232 ], |
| 232 }, | 233 }, |
| 233 ], | 234 ], |
| 234 } | 235 } |
| OLD | NEW |