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