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

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

Issue 891603002: Removes the name service from the service runtime (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixes code review comments Created 5 years, 10 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 | « src/trusted/simple_service/build.scons ('k') | 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(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
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
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 }
OLDNEW
« no previous file with comments | « src/trusted/simple_service/build.scons ('k') | src/untrusted/nacl/nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698