OLD | NEW |
1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. | 1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 executable("irt_core") { | 5 executable("irt_core") { |
6 cflags_c = [ "-std=c99" ] | 6 cflags_c = [ "-std=c99" ] |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "irt_core_resource.c", | 9 "irt_core_resource.c", |
10 "irt_entry_core.c", | 10 "irt_entry_core.c", |
(...skipping 22 matching lines...) Expand all Loading... |
33 "irt_dyncode.c", | 33 "irt_dyncode.c", |
34 "irt_entry.c", | 34 "irt_entry.c", |
35 "irt_exception_handling.c", | 35 "irt_exception_handling.c", |
36 "irt_fdio.c", | 36 "irt_fdio.c", |
37 "irt_filename.c", | 37 "irt_filename.c", |
38 "irt_futex.c", | 38 "irt_futex.c", |
39 "irt_interfaces.c", | 39 "irt_interfaces.c", |
40 "irt_malloc.c", | 40 "irt_malloc.c", |
41 "irt_memory.c", | 41 "irt_memory.c", |
42 "irt_mutex.c", | 42 "irt_mutex.c", |
43 "irt_pnacl_translator.c", | 43 "irt_pnacl_translator_compile.c", |
| 44 "irt_pnacl_translator_link.c", |
44 "irt_private_pthread.c", | 45 "irt_private_pthread.c", |
45 "irt_private_tls.c", | 46 "irt_private_tls.c", |
46 "irt_query_list.c", | 47 "irt_query_list.c", |
47 "irt_random.c", | 48 "irt_random.c", |
48 "irt_sem.c", | 49 "irt_sem.c", |
49 "irt_thread.c", | 50 "irt_thread.c", |
50 "irt_tls.c", | 51 "irt_tls.c", |
51 ] | 52 ] |
52 | 53 |
53 deps = [ | 54 deps = [ |
54 "//native_client/build/config/nacl:nacl_base", | 55 "//native_client/build/config/nacl:nacl_base", |
55 "//native_client/src/shared/gio:gio", | 56 "//native_client/src/shared/gio:gio", |
56 "//native_client/src/shared/platform:platform", | 57 "//native_client/src/shared/platform:platform", |
57 "//native_client/src/shared/srpc:srpc", | 58 "//native_client/src/shared/srpc:srpc", |
58 "//native_client/src/untrusted/nacl:imc_syscalls", | 59 "//native_client/src/untrusted/nacl:imc_syscalls", |
59 ] | 60 ] |
60 } | 61 } |
OLD | NEW |