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 # core_services should be thought of as a bundle of many of the services which | 5 # core_services should be thought of as a bundle of many of the services which |
6 # we ship with. | 6 # we ship with. |
7 | 7 |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/toolchain/toolchain.gni") | 9 import("//build/toolchain/toolchain.gni") |
10 import("//mojo/public/mojo_application.gni") | 10 import("//mojo/public/mojo_application.gni") |
(...skipping 27 matching lines...) Expand all Loading... |
38 ] | 38 ] |
39 | 39 |
40 deps = [ | 40 deps = [ |
41 "//base", | 41 "//base", |
42 "//components/clipboard:lib", | 42 "//components/clipboard:lib", |
43 "//components/filesystem:lib", | 43 "//components/filesystem:lib", |
44 "//components/web_view:lib", | 44 "//components/web_view:lib", |
45 "//mojo/application/public/cpp", | 45 "//mojo/application/public/cpp", |
46 "//mojo/logging", | 46 "//mojo/logging", |
47 "//mojo/message_pump", | 47 "//mojo/message_pump", |
| 48 "//mojo/public/cpp/bindings", |
48 "//mojo/services/tracing:lib", | 49 "//mojo/services/tracing:lib", |
49 "//mojo/services/tracing/public/cpp", | 50 "//mojo/services/tracing/public/cpp", |
50 "//third_party/icu", | 51 "//third_party/icu", |
51 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
52 "//url", | 52 "//url", |
53 ] | 53 ] |
54 | 54 |
55 if (!is_android) { | 55 if (!is_android) { |
56 sources += [ "application_delegate_factory_notandroid.cc" ] | 56 sources += [ "application_delegate_factory_notandroid.cc" ] |
57 deps += [ | 57 deps += [ |
58 "//components/mus:lib", | 58 "//components/mus:lib", |
59 "//components/resource_provider:lib", | 59 "//components/resource_provider:lib", |
60 "//mojo/services/network:lib", | 60 "//mojo/services/network:lib", |
61 ] | 61 ] |
62 } | 62 } |
63 | 63 |
64 if (is_linux) { | 64 if (is_linux) { |
65 deps += [ "//components/font_service:lib" ] | 65 deps += [ "//components/font_service:lib" ] |
66 } else { | 66 } else { |
67 sources += [ "application_delegate_factory_default.cc" ] | 67 sources += [ "application_delegate_factory_default.cc" ] |
68 } | 68 } |
69 | 69 |
70 if (use_aura) { | 70 if (use_aura) { |
71 deps += [ | 71 deps += [ |
72 "//components/mus/public/cpp", | 72 "//components/mus/public/cpp", |
73 "//mandoline/ui/desktop_ui:lib", | 73 "//mandoline/ui/desktop_ui:lib", |
74 "//mandoline/ui/omnibox:lib", | 74 "//mandoline/ui/omnibox:lib", |
75 ] | 75 ] |
76 sources += [ "application_delegate_factory_aura.cc" ] | 76 sources += [ "application_delegate_factory_aura.cc" ] |
77 } | 77 } |
78 } | 78 } |
OLD | NEW |