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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 } | 55 } |
56 | 56 |
57 source_set("loader") { | 57 source_set("loader") { |
58 public_deps = [ | 58 public_deps = [ |
59 ":minimal", | 59 ":minimal", |
60 ] | 60 ] |
61 deps = [ | 61 deps = [ |
62 "//components/nacl/common", | 62 "//components/nacl/common", |
63 "//content/public/common", | 63 "//content/public/common", |
64 "//ppapi/shared_impl", | 64 "//ppapi/shared_impl", |
65 "//third_party/mojo/src/mojo/edk/system", | |
66 ] | 65 ] |
67 | 66 |
68 data_deps = [ | 67 data_deps = [ |
69 "//ppapi/native_client:irt", | 68 "//ppapi/native_client:irt", |
70 "//ppapi/native_client/src/untrusted/pnacl_support_extension", | 69 "//ppapi/native_client/src/untrusted/pnacl_support_extension", |
71 ] | 70 ] |
72 } | 71 } |
73 | 72 |
74 test("nacl_loader_unittests") { | 73 test("nacl_loader_unittests") { |
75 sources = [ | 74 sources = [ |
(...skipping 199 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 |