OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 assert(enable_nacl) | 9 assert(enable_nacl) |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 "nacl_trusted_listener.h", | 24 "nacl_trusted_listener.h", |
25 "nacl_validation_db.h", | 25 "nacl_validation_db.h", |
26 "nacl_validation_query.cc", | 26 "nacl_validation_query.cc", |
27 "nacl_validation_query.h", | 27 "nacl_validation_query.h", |
28 ] | 28 ] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 ":minimal_content_dummy", | 31 ":minimal_content_dummy", |
32 "//base", | 32 "//base", |
33 "//components/nacl/common:minimal", | 33 "//components/nacl/common:minimal", |
34 "//components/nacl/common:mojo_bindings", | |
35 "//crypto", | 34 "//crypto", |
36 "//ipc", | 35 "//ipc", |
37 "//mojo/edk/system", | 36 "//mojo/edk/system", |
38 "//native_client/src/trusted/service_runtime:sel_main_chrome", | 37 "//native_client/src/trusted/service_runtime:sel_main_chrome", |
39 "//ppapi/c", | 38 "//ppapi/c", |
40 "//ppapi/proxy:ipc", | 39 "//ppapi/proxy:ipc", |
41 "//sandbox", | 40 "//sandbox", |
42 ] | 41 ] |
43 } | 42 } |
44 | 43 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 "nacl_trusted_listener.cc", | 207 "nacl_trusted_listener.cc", |
209 "nacl_trusted_listener.h", | 208 "nacl_trusted_listener.h", |
210 "nonsfi/nonsfi_listener.cc", | 209 "nonsfi/nonsfi_listener.cc", |
211 "nonsfi/nonsfi_listener.h", | 210 "nonsfi/nonsfi_listener.h", |
212 "nonsfi/nonsfi_main.cc", | 211 "nonsfi/nonsfi_main.cc", |
213 "nonsfi/nonsfi_main.h", | 212 "nonsfi/nonsfi_main.h", |
214 ] | 213 ] |
215 deps = [ | 214 deps = [ |
216 ":nacl_helper_nonsfi_sandbox", | 215 ":nacl_helper_nonsfi_sandbox", |
217 "//base", | 216 "//base", |
218 "//components/nacl/common:mojo_bindings", | |
219 "//components/nacl/common:switches", | 217 "//components/nacl/common:switches", |
220 "//components/tracing", | 218 "//components/tracing", |
221 "//content", | 219 "//content", |
222 "//ipc", | 220 "//ipc", |
223 "//mojo/edk/system", | 221 "//mojo/edk/system", |
224 "//native_client/src/nonsfi/irt:nacl_sys_private", | 222 "//native_client/src/nonsfi/irt:nacl_sys_private", |
225 "//native_client/src/nonsfi/loader:elf_loader", | 223 "//native_client/src/nonsfi/loader:elf_loader", |
226 | 224 |
227 # Normally libnacl is included implicitly by libc and is part of the | 225 # Normally libnacl is included implicitly by libc and is part of the |
228 # toolchain. But //build/config/nacl:compiler uses -nodefaultlibs and so | 226 # toolchain. But //build/config/nacl:compiler uses -nodefaultlibs and so |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", | 288 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", |
291 ] | 289 ] |
292 outputs = [ | 290 outputs = [ |
293 "${root_build_dir}/{{source_file_part}}", | 291 "${root_build_dir}/{{source_file_part}}", |
294 ] | 292 ] |
295 deps = [ | 293 deps = [ |
296 ":nacl_helper_nonsfi_unittests_main", | 294 ":nacl_helper_nonsfi_unittests_main", |
297 ] | 295 ] |
298 } | 296 } |
299 } | 297 } |
OLD | NEW |