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/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 | 7 |
8 group("mojo") { | 8 group("mojo") { |
9 # Meta-target, don't link into production code. | 9 # Meta-target, don't link into production code. |
10 testonly = true | 10 testonly = true |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "//mojo/edk/system:tests", | 53 "//mojo/edk/system:tests", |
54 "//mojo/edk/test:public_tests", | 54 "//mojo/edk/test:public_tests", |
55 "//mojo/dart/embedder/test:dart_unittests", | 55 "//mojo/dart/embedder/test:dart_unittests", |
56 "//mojo/public/cpp/bindings/tests:versioning_apptests", | 56 "//mojo/public/cpp/bindings/tests:versioning_apptests", |
57 "//mojo/services/view_manager/public/cpp/tests:mojo_view_manager_lib_unittes
ts", | 57 "//mojo/services/view_manager/public/cpp/tests:mojo_view_manager_lib_unittes
ts", |
58 "//mojo/tests:mojo_task_tracker_perftests", | 58 "//mojo/tests:mojo_task_tracker_perftests", |
59 "//mojo/tools:message_generator", | 59 "//mojo/tools:message_generator", |
60 "//mojo/gles2:mgl_unittests", | 60 "//mojo/gles2:mgl_unittests", |
61 "//mojo/gpu:apptests", | 61 "//mojo/gpu:apptests", |
62 "//mojo/services/files/public/c:apptests", | 62 "//mojo/services/files/public/c:apptests", |
| 63 "//mojo/services/files/public/cpp:files_impl_apptests", |
63 ] | 64 ] |
64 | 65 |
65 if (is_linux || is_android) { | 66 if (is_linux || is_android) { |
66 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] | 67 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] |
67 } | 68 } |
68 | 69 |
69 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 70 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
70 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 71 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
71 if (host_os == "linux") { | 72 if (host_os == "linux") { |
72 deps += [ "//mojo/edk/js:tests" ] | 73 deps += [ "//mojo/edk/js:tests" ] |
73 } | 74 } |
74 | 75 |
75 if (mojo_use_prebuilt_network_service) { | 76 if (mojo_use_prebuilt_network_service) { |
76 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] | 77 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] |
77 } | 78 } |
78 } | 79 } |
OLD | NEW |