| 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 "//mojo/edk/system", |
| 36 "//native_client/src/trusted/service_runtime:sel_main_chrome", | 37 "//native_client/src/trusted/service_runtime:sel_main_chrome", |
| 37 "//ppapi/c", | 38 "//ppapi/c", |
| 38 "//ppapi/proxy:ipc", | 39 "//ppapi/proxy:ipc", |
| 39 "//sandbox", | 40 "//sandbox", |
| 40 ] | 41 ] |
| 41 } | 42 } |
| 42 | 43 |
| 43 # This exists just to make 'gn check' happy with :minimal and | 44 # 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 | 45 # :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 | 46 # 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", | 276 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", |
| 276 ] | 277 ] |
| 277 outputs = [ | 278 outputs = [ |
| 278 "${root_build_dir}/{{source_file_part}}", | 279 "${root_build_dir}/{{source_file_part}}", |
| 279 ] | 280 ] |
| 280 deps = [ | 281 deps = [ |
| 281 ":nacl_helper_nonsfi_unittests_main", | 282 ":nacl_helper_nonsfi_unittests_main", |
| 282 ] | 283 ] |
| 283 } | 284 } |
| 284 } | 285 } |
| OLD | NEW |