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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 | 7 |
8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. | 8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. |
9 group("mojo") { | 9 group("mojo") { |
10 # Meta-target, don't link into production code. | 10 # Meta-target, don't link into production code. |
(...skipping 29 matching lines...) Expand all Loading... |
40 deps += [ | 40 deps += [ |
41 "//mojo/nacl:mojo_nacl", | 41 "//mojo/nacl:mojo_nacl", |
42 "//mojo/nacl:mojo_nacl_tests", | 42 "//mojo/nacl:mojo_nacl_tests", |
43 ] | 43 ] |
44 } | 44 } |
45 } | 45 } |
46 | 46 |
47 group("tests") { | 47 group("tests") { |
48 testonly = true | 48 testonly = true |
49 deps = [ | 49 deps = [ |
50 "//mojo/application_manager:mojo_application_manager_unittests", | |
51 "//mojo/common:mojo_common_unittests", | 50 "//mojo/common:mojo_common_unittests", |
52 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", | 51 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", |
53 "//mojo/edk/js/test:js_unittests", | 52 "//mojo/edk/js/test:js_unittests", |
54 "//mojo/edk/js/test:js_integration_tests", | 53 "//mojo/edk/js/test:js_integration_tests", |
55 "//mojo/edk/system:mojo_message_pipe_perftests", | 54 "//mojo/edk/system:mojo_message_pipe_perftests", |
56 "//mojo/edk/system:mojo_system_unittests", | 55 "//mojo/edk/system:mojo_system_unittests", |
57 "//mojo/edk/test:mojo_public_application_unittests", | 56 "//mojo/edk/test:mojo_public_application_unittests", |
58 "//mojo/edk/test:mojo_public_bindings_unittests", | 57 "//mojo/edk/test:mojo_public_bindings_unittests", |
59 "//mojo/edk/test:mojo_public_environment_unittests", | 58 "//mojo/edk/test:mojo_public_environment_unittests", |
60 "//mojo/edk/test:mojo_public_system_perftests", | 59 "//mojo/edk/test:mojo_public_system_perftests", |
(...skipping 12 matching lines...) Expand all Loading... |
73 ] | 72 ] |
74 | 73 |
75 if (is_android) { | 74 if (is_android) { |
76 deps += [ "//mojo/edk/system:mojo_system_unittests_apk" ] | 75 deps += [ "//mojo/edk/system:mojo_system_unittests_apk" ] |
77 } | 76 } |
78 | 77 |
79 if (mojo_use_dart) { | 78 if (mojo_use_dart) { |
80 deps += [ "//mojo/dart/embedder/test:dart_unittests" ] | 79 deps += [ "//mojo/dart/embedder/test:dart_unittests" ] |
81 } | 80 } |
82 } | 81 } |
OLD | NEW |