Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: mojo/BUILD.gn

Issue 1313353010: Overhaul Mandoline event transport code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6
7 group("mojo") { 7 group("mojo") {
8 # Meta-target, don't link into production code. 8 # Meta-target, don't link into production code.
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
(...skipping 29 matching lines...) Expand all
40 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", 40 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
41 ] 41 ]
42 } 42 }
43 43
44 group("tests") { 44 group("tests") {
45 testonly = true 45 testonly = true
46 deps = [ 46 deps = [
47 "//ipc/mojo:ipc_mojo_unittests", 47 "//ipc/mojo:ipc_mojo_unittests",
48 "//mojo/application/public/cpp/tests:mojo_public_application_unittests", 48 "//mojo/application/public/cpp/tests:mojo_public_application_unittests",
49 "//mojo/common:mojo_common_unittests", 49 "//mojo/common:mojo_common_unittests",
50 "//mojo/converters/input_events/tests:input_events_lib_unittests",
50 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", 51 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
51 "//third_party/mojo/src/mojo/edk/js/test:js_unittests", 52 "//third_party/mojo/src/mojo/edk/js/test:js_unittests",
52 "//third_party/mojo/src/mojo/edk/system:mojo_message_pipe_perftests", 53 "//third_party/mojo/src/mojo/edk/system:mojo_message_pipe_perftests",
53 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", 54 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
54 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", 55 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
55 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", 56 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
56 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests", 57 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests",
57 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", 58 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
58 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", 59 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
59 ] 60 ]
60 61
61 if (!is_component_build) { 62 if (!is_component_build) {
62 deps += [ 63 deps += [
63 "//mojo/runner:apptests", 64 "//mojo/runner:apptests",
64 "//mojo/runner:mojo_runner_unittests", 65 "//mojo/runner:mojo_runner_unittests",
65 "//mojo/services/network:apptests", 66 "//mojo/services/network:apptests",
66 "//mojo/shell:mojo_shell_unittests", 67 "//mojo/shell:mojo_shell_unittests",
67 ] 68 ]
68 69
69 if (is_android) { 70 if (is_android) {
70 deps += [ "//mojo/runner:mojo_runner_apptests_apk" ] 71 deps += [ "//mojo/runner:mojo_runner_apptests_apk" ]
71 } 72 }
72 } 73 }
73 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698