Fix link in German terms of service.
[chromium-blink-merge.git] / mandoline / BUILD.gn
blobdb023aa01b41191aed7a786fe85203deda032c4a
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.
5 group("all") {
6   # Meta-target, don't link into production code.
7   testonly = true
9   deps = [
10     ":tests",
11   ]
13   if (!is_component_build) {
14     deps += [ "//mandoline/app" ]
16     if (!is_win) {
17       deps += [ "//components/filesystem" ]
18     }
19   }
22 group("tests") {
23   testonly = true
24   deps = [
25     "//mojo:tests",
26   ]
28   # TODO(GYP): Make this work.
29   if (!is_component_build && !is_mac) {
30     deps += [
31       "//components/clipboard:apptests",
32       "//components/html_viewer:apptests",
33       "//components/html_viewer:tests",
34       "//components/resource_provider:apptests",
35       "//components/resource_provider:tests",
36       "//components/view_manager:tests",
37     ]
39     if (!is_win) {
40       deps += [ "//components/filesystem:apptests" ]
41     }
42   }