| 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(current_os == "nacl", "This file contains untrusted code only.") | 5 assert(current_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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 "stubs/tcdrain.c", | 316 "stubs/tcdrain.c", |
| 317 "stubs/tcflow.c", | 317 "stubs/tcflow.c", |
| 318 "stubs/tcflush.c", | 318 "stubs/tcflush.c", |
| 319 "stubs/tcgetattr.c", | 319 "stubs/tcgetattr.c", |
| 320 "stubs/tcsendbreak.c", | 320 "stubs/tcsendbreak.c", |
| 321 "stubs/tcsetattr.c", | 321 "stubs/tcsetattr.c", |
| 322 "stubs/times.c", | 322 "stubs/times.c", |
| 323 "stubs/ttyname.c", | 323 "stubs/ttyname.c", |
| 324 "stubs/ttyname_r.c", | 324 "stubs/ttyname_r.c", |
| 325 "stubs/umask.c", | 325 "stubs/umask.c", |
| 326 "stubs/utime.c", | |
| 327 "stubs/vfork.c", | 326 "stubs/vfork.c", |
| 328 "stubs/wait.c", | 327 "stubs/wait.c", |
| 329 "stubs/waitpid.c", | 328 "stubs/waitpid.c", |
| 330 "symlink.c", | 329 "symlink.c", |
| 331 "sysconf.c", | 330 "sysconf.c", |
| 332 "tls.c", | 331 "tls.c", |
| 333 "truncate.c", | 332 "truncate.c", |
| 334 "unlink.c", | 333 "unlink.c", |
| 334 "utime.c", |
| 335 "utimes.c", | 335 "utimes.c", |
| 336 "write.c", | 336 "write.c", |
| 337 ] | 337 ] |
| 338 } | 338 } |
| 339 | 339 |
| 340 if (current_os != "glibc" && current_cpu == "arm") { | 340 if (current_os != "glibc" && current_cpu == "arm") { |
| 341 sources += [ "aeabi_read_tp.S" ] | 341 sources += [ "aeabi_read_tp.S" ] |
| 342 } | 342 } |
| 343 | 343 |
| 344 if (current_cpu == "pnacl") { | 344 if (current_cpu == "pnacl") { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 "-Wno-self-assign", | 450 "-Wno-self-assign", |
| 451 "-allow-asm", | 451 "-allow-asm", |
| 452 ] | 452 ] |
| 453 } | 453 } |
| 454 | 454 |
| 455 deps = [ | 455 deps = [ |
| 456 "//native_client/build/config/nacl:nacl_base", | 456 "//native_client/build/config/nacl:nacl_base", |
| 457 ] | 457 ] |
| 458 } | 458 } |
| 459 } | 459 } |
| OLD | NEW |