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("browser") { | 9 mojo_native_application("browser") { |
10 sources = [ | 10 sources = [ |
(...skipping 22 matching lines...) Expand all Loading... |
33 ] | 33 ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 "public/interfaces", | 36 "public/interfaces", |
37 "//base", | 37 "//base", |
38 "//components/view_manager/public/cpp", | 38 "//components/view_manager/public/cpp", |
39 "//mandoline/services/navigation/public/interfaces", | 39 "//mandoline/services/navigation/public/interfaces", |
40 "//mandoline/tab", | 40 "//mandoline/tab", |
41 "//mojo/application/public/interfaces", | 41 "//mojo/application/public/interfaces", |
42 "//mojo/converters/geometry", | 42 "//mojo/converters/geometry", |
| 43 "//mojo/runner:switches", |
| 44 "//mojo/services/tracing:bindings", |
43 "//skia", | 45 "//skia", |
44 "//third_party/mojo/src/mojo/public/cpp/bindings", | 46 "//third_party/mojo/src/mojo/public/cpp/bindings", |
45 "//ui/gfx/geometry", | 47 "//ui/gfx/geometry", |
46 "//ui/mojo/events:interfaces", | 48 "//ui/mojo/events:interfaces", |
47 ] | 49 ] |
48 | 50 |
49 if (is_mac || use_aura) { | 51 if (is_mac || use_aura) { |
50 sources += [ | 52 sources += [ |
51 "desktop/desktop_ui.cc", | 53 "desktop/desktop_ui.cc", |
52 "desktop/desktop_ui.h", | 54 "desktop/desktop_ui.h", |
(...skipping 16 matching lines...) Expand all Loading... |
69 ] | 71 ] |
70 | 72 |
71 deps = [ | 73 deps = [ |
72 "//base", | 74 "//base", |
73 "//base/test:test_config", | 75 "//base/test:test_config", |
74 "//mandoline/tab/public/interfaces", | 76 "//mandoline/tab/public/interfaces", |
75 "//mandoline/ui/browser:lib", | 77 "//mandoline/ui/browser:lib", |
76 "//mojo/application/public/cpp:test_support", | 78 "//mojo/application/public/cpp:test_support", |
77 ] | 79 ] |
78 } | 80 } |
OLD | NEW |