OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 mojo_native_application("desktop_ui") { | 9 mojo_native_application("desktop_ui") { |
10 sources = [ | 10 sources = [ |
11 "main.cc", | 11 "main.cc", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 ":lib", | 15 ":lib", |
16 "//mandoline/ui/common/resources", | 16 "//mandoline/ui/common/resources", |
17 "//mojo/application/public/cpp", | 17 "//mojo/application/public/cpp", |
18 ] | 18 ] |
19 | 19 |
20 resources = [ "$root_out_dir/mandoline_ui.pak" ] | 20 resources = [ "$root_out_dir/mandoline_ui.pak" ] |
21 } | 21 } |
22 | 22 |
23 source_set("lib") { | 23 source_set("lib") { |
24 sources = [ | 24 sources = [ |
25 "browser_commands.h", | 25 "browser_commands.h", |
26 "browser_manager.cc", | 26 "browser_manager.cc", |
27 "browser_manager.h", | 27 "browser_manager.h", |
28 "browser_window.cc", | 28 "browser_window.cc", |
29 "browser_window.h", | 29 "browser_window.h", |
| 30 "find_bar_delegate.h", |
| 31 "find_bar_view.cc", |
| 32 "find_bar_view.h", |
30 "toolbar_view.cc", | 33 "toolbar_view.cc", |
31 "toolbar_view.h", | 34 "toolbar_view.h", |
32 ] | 35 ] |
33 | 36 |
34 deps = [ | 37 deps = [ |
35 "public/interfaces", | 38 "public/interfaces", |
36 "//base", | 39 "//base", |
37 "//components/web_view/public/cpp", | 40 "//components/web_view/public/cpp", |
38 "//components/web_view/public/interfaces", | 41 "//components/web_view/public/interfaces", |
39 "//mandoline/ui/aura", | 42 "//mandoline/ui/aura", |
(...skipping 21 matching lines...) Expand all Loading... |
61 | 64 |
62 deps = [ | 65 deps = [ |
63 "//base", | 66 "//base", |
64 "//base/test:test_config", | 67 "//base/test:test_config", |
65 "//components/mus/public/cpp", | 68 "//components/mus/public/cpp", |
66 "//mandoline/ui/desktop_ui:lib", | 69 "//mandoline/ui/desktop_ui:lib", |
67 "//mojo/application/public/cpp:sources", | 70 "//mojo/application/public/cpp:sources", |
68 "//mojo/application/public/cpp:test_support", | 71 "//mojo/application/public/cpp:test_support", |
69 ] | 72 ] |
70 } | 73 } |
OLD | NEW |