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 static_library("sel_main") { | 5 static_library("sel_main") { |
6 sources = [ | 6 sources = [ |
7 "sel_main.c", | 7 "sel_main.c", |
8 ] | 8 ] |
9 deps = [ | 9 deps = [ |
10 "//native_client/build/config/nacl:nacl_base", | 10 "//native_client/build/config/nacl:nacl_base", |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 sources += [ | 204 sources += [ |
205 "generic/vm_hole.c", | 205 "generic/vm_hole.c", |
206 ] | 206 ] |
207 } | 207 } |
208 | 208 |
209 deps = [ | 209 deps = [ |
210 "//native_client/build/config/nacl:nacl_base", | 210 "//native_client/build/config/nacl:nacl_base", |
211 "//native_client/src/trusted/desc_cacheability:desc_cacheability", | 211 "//native_client/src/trusted/desc_cacheability:desc_cacheability", |
212 "//native_client/src/trusted/service_runtime:nacl_error_code", | 212 "//native_client/src/trusted/service_runtime:nacl_error_code", |
213 "//native_client/src/trusted/service_runtime:env_cleanser", | 213 "//native_client/src/trusted/service_runtime:env_cleanser", |
214 "//native_client/src/trusted/manifest_name_service_proxy:manifest_proxy", | |
215 "//native_client/src/trusted/simple_service:simple_service", | 214 "//native_client/src/trusted/simple_service:simple_service", |
216 "//native_client/src/trusted/threading:thread_interface", | 215 "//native_client/src/trusted/threading:thread_interface", |
217 "//native_client/src/shared/srpc:nonnacl_srpc", | 216 "//native_client/src/shared/srpc:nonnacl_srpc", |
218 "//native_client/src/trusted/desc:nrd_xfer", | 217 "//native_client/src/trusted/desc:nrd_xfer", |
219 "//native_client/src/trusted/perf_counter:nacl_perf_counter", | 218 "//native_client/src/trusted/perf_counter:nacl_perf_counter", |
220 "//native_client/src/trusted/nacl_base:nacl_base", | 219 "//native_client/src/trusted/nacl_base:nacl_base", |
221 "//native_client/src/shared/imc:imc", | 220 "//native_client/src/shared/imc:imc", |
222 "//native_client/src/trusted/fault_injection:nacl_fault_inject", | 221 "//native_client/src/trusted/fault_injection:nacl_fault_inject", |
223 "//native_client/src/trusted/interval_multiset:nacl_interval", | 222 "//native_client/src/trusted/interval_multiset:nacl_interval", |
224 "//native_client/src/shared/platform:platform", | 223 "//native_client/src/shared/platform:platform", |
(...skipping 26 matching lines...) Expand all Loading... |
251 libs = ["rt"] | 250 libs = ["rt"] |
252 ldflags = ["-pie"] | 251 ldflags = ["-pie"] |
253 } | 252 } |
254 if (is_linux) { | 253 if (is_linux) { |
255 datadeps = [ | 254 datadeps = [ |
256 "//native_client/src/trusted/service_runtime/linux:munge_nacl_helper_boots
trap" | 255 "//native_client/src/trusted/service_runtime/linux:munge_nacl_helper_boots
trap" |
257 ] | 256 ] |
258 } | 257 } |
259 } | 258 } |
260 | 259 |
OLD | NEW |