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 15 matching lines...) Expand all Loading... |
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 "//crypto", | 34 "//crypto", |
35 "//ipc", | 35 "//ipc", |
| 36 "//ipc/mojo", |
| 37 "//mojo/edk/system", |
36 "//native_client/src/trusted/service_runtime:sel_main_chrome", | 38 "//native_client/src/trusted/service_runtime:sel_main_chrome", |
37 "//ppapi/c", | 39 "//ppapi/c", |
38 "//ppapi/proxy:ipc", | 40 "//ppapi/proxy:ipc", |
39 "//sandbox", | 41 "//sandbox", |
40 ] | 42 ] |
41 } | 43 } |
42 | 44 |
43 # This exists just to make 'gn check' happy with :minimal and | 45 # This exists just to make 'gn check' happy with :minimal and |
44 # :nacl_helper_win_64 (below). They can't depend on //content/public/common | 46 # :nacl_helper_win_64 (below). They can't depend on //content/public/common |
45 # or anything like that, because that would bring in lots more than counts | 47 # or anything like that, because that would bring in lots more than counts |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", | 277 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", |
276 ] | 278 ] |
277 outputs = [ | 279 outputs = [ |
278 "${root_build_dir}/{{source_file_part}}", | 280 "${root_build_dir}/{{source_file_part}}", |
279 ] | 281 ] |
280 deps = [ | 282 deps = [ |
281 ":nacl_helper_nonsfi_unittests_main", | 283 ":nacl_helper_nonsfi_unittests_main", |
282 ] | 284 ] |
283 } | 285 } |
284 } | 286 } |
OLD | NEW |