| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/ui.gni") | |
| 6 | |
| 7 group("all") { | |
| 8 # Meta-target, don't link into production code. | |
| 9 testonly = true | |
| 10 | |
| 11 deps = [ | |
| 12 ":tests", | |
| 13 "//mojo", | |
| 14 ] | |
| 15 | |
| 16 if (is_android) { | |
| 17 deps += [ "//mandoline/app/android" ] | |
| 18 } else { | |
| 19 deps += [ | |
| 20 "//mandoline/app/desktop", | |
| 21 "//mash/example", | |
| 22 ] | |
| 23 } | |
| 24 } | |
| 25 | |
| 26 group("tests") { | |
| 27 testonly = true | |
| 28 deps = [ | |
| 29 "//mojo:tests", | |
| 30 ] | |
| 31 | |
| 32 data_deps = [ | |
| 33 "//tools/perf/clear_system_cache", # For startup.cold.* telemetry testing. | |
| 34 ] | |
| 35 | |
| 36 if (use_x11) { | |
| 37 deps += [ "//tools/xdisplaycheck" ] | |
| 38 } | |
| 39 | |
| 40 if (!is_mac) { | |
| 41 deps += [ | |
| 42 "//components/clipboard:apptests", | |
| 43 "//components/filesystem:apptests", | |
| 44 "//components/html_viewer:apptests", | |
| 45 "//components/html_viewer:html_viewer_unittests", | |
| 46 "//components/html_viewer:layout_test_html_viewer", | |
| 47 "//components/mus/ws:tests", | |
| 48 "//components/resource_provider:apptests", | |
| 49 "//components/resource_provider:resource_provider_unittests", | |
| 50 "//components/web_view:apptests", | |
| 51 "//components/web_view/test_runner", | |
| 52 "//media/mojo/services:tests", | |
| 53 "//sql/mojo:apptests", | |
| 54 ] | |
| 55 | |
| 56 if (use_aura) { | |
| 57 deps += [ "//mandoline/ui/desktop_ui:mandoline_browser_apptests" ] | |
| 58 } | |
| 59 } | |
| 60 } | |
| OLD | NEW |