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

Side by Side Diff: mandoline/BUILD.gn

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 years, 10 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
« no previous file with comments | « components/web_view/web_view_switches.cc ('k') | mandoline/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « components/web_view/web_view_switches.cc ('k') | mandoline/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698