| 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("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_nacl) | 10 assert(enable_nacl) |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 ":minimal", | 67 ":minimal", |
| 68 ] | 68 ] |
| 69 deps = [ | 69 deps = [ |
| 70 "//components/nacl/common", | 70 "//components/nacl/common", |
| 71 "//content/public/common", | 71 "//content/public/common", |
| 72 "//ppapi/shared_impl", | 72 "//ppapi/shared_impl", |
| 73 "//services/service_manager/public/cpp", | 73 "//services/service_manager/public/cpp", |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 data_deps = [ | 76 data_deps = [ |
| 77 ":nacl_loader_manifest", | |
| 78 "//ppapi/native_client:irt", | 77 "//ppapi/native_client:irt", |
| 79 "//ppapi/native_client/src/untrusted/pnacl_support_extension", | 78 "//ppapi/native_client/src/untrusted/pnacl_support_extension", |
| 80 ] | 79 ] |
| 81 } | 80 } |
| 82 | 81 |
| 83 test("nacl_loader_unittests") { | 82 test("nacl_loader_unittests") { |
| 84 sources = [ | 83 sources = [ |
| 85 "nacl_ipc_adapter_unittest.cc", | 84 "nacl_ipc_adapter_unittest.cc", |
| 86 "nacl_validation_query_unittest.cc", | 85 "nacl_validation_query_unittest.cc", |
| 87 "run_all_unittests.cc", | 86 "run_all_unittests.cc", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 deps = [ | 291 deps = [ |
| 293 ":nacl_helper_nonsfi_unittests_main", | 292 ":nacl_helper_nonsfi_unittests_main", |
| 294 ] | 293 ] |
| 295 } | 294 } |
| 296 } | 295 } |
| 297 | 296 |
| 298 service_manifest("nacl_loader_manifest") { | 297 service_manifest("nacl_loader_manifest") { |
| 299 name = "nacl_loader" | 298 name = "nacl_loader" |
| 300 source = "nacl_loader_manifest.json" | 299 source = "nacl_loader_manifest.json" |
| 301 } | 300 } |
| OLD | NEW |