Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: src/untrusted/nacl/BUILD.gn

Issue 1065963002: Add utime implementation to libnacl (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/untrusted/nacl/nacl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/untrusted/nacl/nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698