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 group("desktop") { | |
6 deps = [ | |
7 ":mandoline", | |
8 ] | |
9 } | |
10 | |
11 executable("mandoline") { | |
12 sources = [ | |
13 "../register_local_aliases.cc", | |
14 "main.cc", | |
15 ] | |
16 | |
17 deps = [ | |
18 "//base", | |
19 "//build/config/sanitizers:deps", | |
20 "//components/tracing:startup_tracing", | |
21 "//mojo/common", | |
22 "//mojo/environment:chromium", | |
23 "//mojo/shell", | |
24 "//mojo/shell/package_manager", | |
25 "//mojo/shell/runner/common", | |
26 "//mojo/shell/runner/host:lib", | |
27 "//mojo/shell/standalone:lib", | |
28 "//mojo/shell/standalone:register_local_aliases_fwd", | |
29 ] | |
30 | |
31 data_deps = [ | |
32 "//components/html_viewer", | |
33 "//components/pdf_viewer", | |
34 "//mandoline/services/core_services", | |
35 "//mandoline/services/updater", | |
36 "//mandoline/ui", | |
37 ] | |
38 } | |
OLD | NEW |