OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//build/module_args/mojo.gni") | 6 import("//build/module_args/mojo.gni") |
7 import("//mojo/public/mojo.gni") | 7 import("//mojo/public/mojo.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 declare_args() { | 10 declare_args() { |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 if (is_linux && mojo_use_go) { | 34 if (is_linux && mojo_use_go) { |
35 deps += [ "//mojo/go" ] | 35 deps += [ "//mojo/go" ] |
36 } | 36 } |
37 | 37 |
38 if (is_linux && !is_fnl) { | 38 if (is_linux && !is_fnl) { |
39 deps += [ "//mojo/python" ] | 39 deps += [ "//mojo/python" ] |
40 } | 40 } |
41 | 41 |
42 if (mojo_use_nacl) { | 42 if (mojo_use_nacl) { |
43 if (mojo_use_nacl_sfi) { | |
44 deps += [ | |
45 "//mojo/nacl/sfi:mojo_nacl", | |
46 "//mojo/nacl/sfi:mojo_nacl_tests_sfi", | |
47 ] | |
48 } | |
49 | |
50 if (mojo_use_nacl_nonsfi) { | 43 if (mojo_use_nacl_nonsfi) { |
51 deps += [ | 44 deps += [ |
52 "//mojo/nacl/nonsfi:mojo_nacl", | 45 "//mojo/nacl/nonsfi:mojo_nacl", |
53 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", | 46 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", |
54 ] | 47 ] |
55 } | 48 } |
56 } | 49 } |
57 } | 50 } |
58 | 51 |
59 group("tests") { | 52 group("tests") { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "//mojo/public/cpp/utility/tests", | 162 "//mojo/public/cpp/utility/tests", |
170 ] | 163 ] |
171 } | 164 } |
172 | 165 |
173 test("mojo_system_impl_private_unittests") { | 166 test("mojo_system_impl_private_unittests") { |
174 deps = [ | 167 deps = [ |
175 "//mojo/edk/test:run_all_unittests", | 168 "//mojo/edk/test:run_all_unittests", |
176 "//mojo/public/platform/native:system_impl_private_tests", | 169 "//mojo/public/platform/native:system_impl_private_tests", |
177 ] | 170 ] |
178 } | 171 } |
OLD | NEW |