| 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 assert(os == "nacl", "This file contains untrusted code only.") | 5 assert(os == "nacl", "This file contains untrusted code only.") |
| 6 | 6 |
| 7 static_library("nacl_dyncode_private") { | 7 static_library("nacl_dyncode_private") { |
| 8 cflags_c = [] | 8 cflags_c = [] |
| 9 sources = [ | 9 sources = [ |
| 10 "dyncode_private.c", | 10 "dyncode_private.c", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 static_library("imc_syscalls") { | 63 static_library("imc_syscalls") { |
| 64 cflags_c = [] | 64 cflags_c = [] |
| 65 sources = [ | 65 sources = [ |
| 66 "imc_accept.c", | 66 "imc_accept.c", |
| 67 "imc_connect.c", | 67 "imc_connect.c", |
| 68 "imc_makeboundsock.c", | 68 "imc_makeboundsock.c", |
| 69 "imc_mem_obj_create.c", | 69 "imc_mem_obj_create.c", |
| 70 "imc_recvmsg.c", | 70 "imc_recvmsg.c", |
| 71 "imc_sendmsg.c", | 71 "imc_sendmsg.c", |
| 72 "imc_socketpair.c", | 72 "imc_socketpair.c", |
| 73 "nameservice.c", | |
| 74 ] | 73 ] |
| 75 | 74 |
| 76 if (cpu_arch == "pnacl") { | 75 if (cpu_arch == "pnacl") { |
| 77 cflags_c += [ | 76 cflags_c += [ |
| 78 "-Wno-self-assign", | 77 "-Wno-self-assign", |
| 79 "-allow-asm", | 78 "-allow-asm", |
| 80 ] | 79 ] |
| 81 } | 80 } |
| 82 deps = [ | 81 deps = [ |
| 83 "//native_client/build/config/nacl:nacl_base", | 82 "//native_client/build/config/nacl:nacl_base", |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 "-Wno-self-assign", | 452 "-Wno-self-assign", |
| 454 "-allow-asm", | 453 "-allow-asm", |
| 455 ] | 454 ] |
| 456 } | 455 } |
| 457 | 456 |
| 458 deps = [ | 457 deps = [ |
| 459 "//native_client/build/config/nacl:nacl_base", | 458 "//native_client/build/config/nacl:nacl_base", |
| 460 ] | 459 ] |
| 461 } | 460 } |
| 462 } | 461 } |
| OLD | NEW |