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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 deps = [ | 110 deps = [ |
111 ":loader", | 111 ":loader", |
112 "//base", | 112 "//base", |
113 "//build/config/sanitizers:deps", | 113 "//build/config/sanitizers:deps", |
114 "//components/nacl/common:switches", | 114 "//components/nacl/common:switches", |
115 "//components/nacl/loader/sandbox_linux", | 115 "//components/nacl/loader/sandbox_linux", |
116 "//content/public/common", | 116 "//content/public/common", |
117 "//crypto", | 117 "//crypto", |
118 "//ipc", | 118 "//ipc", |
119 "//sandbox/linux:sandbox_services", | 119 "//sandbox/linux:sandbox_services", |
120 "//url/ipc:url_ipc", | |
121 ] | 120 ] |
122 | 121 |
123 cflags = [ "-fPIE" ] | 122 cflags = [ "-fPIE" ] |
124 | 123 |
125 ldflags = [ "-pie" ] | 124 ldflags = [ "-pie" ] |
126 | 125 |
127 data_deps = [ | 126 data_deps = [ |
128 "//native_client/src/trusted/service_runtime/linux:bootstrap", | 127 "//native_client/src/trusted/service_runtime/linux:bootstrap", |
129 ] | 128 ] |
130 } | 129 } |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", | 274 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", |
276 ] | 275 ] |
277 outputs = [ | 276 outputs = [ |
278 "${root_build_dir}/{{source_file_part}}", | 277 "${root_build_dir}/{{source_file_part}}", |
279 ] | 278 ] |
280 deps = [ | 279 deps = [ |
281 ":nacl_helper_nonsfi_unittests_main", | 280 ":nacl_helper_nonsfi_unittests_main", |
282 ] | 281 ] |
283 } | 282 } |
284 } | 283 } |
OLD | NEW |