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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "application_delegate_factory_linux.cc", | 45 "application_delegate_factory_linux.cc", |
46 "core_services_application_delegate.cc", | 46 "core_services_application_delegate.cc", |
47 "main.cc", | 47 "main.cc", |
48 ] | 48 ] |
49 | 49 |
50 deps = [ | 50 deps = [ |
51 "//base", | 51 "//base", |
52 "//components/clipboard:lib", | 52 "//components/clipboard:lib", |
53 "//components/filesystem:lib", | 53 "//components/filesystem:lib", |
54 "//components/web_view:lib", | 54 "//components/web_view:lib", |
55 "//mojo/application/public/cpp", | |
56 "//mojo/logging", | 55 "//mojo/logging", |
57 "//mojo/message_pump", | 56 "//mojo/message_pump", |
58 "//mojo/public/cpp/bindings", | 57 "//mojo/public/cpp/bindings", |
59 "//mojo/services/tracing:lib", | 58 "//mojo/services/tracing:lib", |
60 "//mojo/services/tracing/public/cpp", | 59 "//mojo/services/tracing/public/cpp", |
| 60 "//mojo/shell/public/cpp", |
61 "//third_party/icu", | 61 "//third_party/icu", |
62 "//url", | 62 "//url", |
63 ] | 63 ] |
64 | 64 |
65 if (!is_android) { | 65 if (!is_android) { |
66 sources += [ "application_delegate_factory_notandroid.cc" ] | 66 sources += [ "application_delegate_factory_notandroid.cc" ] |
67 deps += [ | 67 deps += [ |
68 "//components/mus:lib", | 68 "//components/mus:lib", |
69 "//components/resource_provider:lib", | 69 "//components/resource_provider:lib", |
70 "//mojo/services/network:lib", | 70 "//mojo/services/network:lib", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 if (is_linux) { | 74 if (is_linux) { |
75 deps += [ "//components/font_service:lib" ] | 75 deps += [ "//components/font_service:lib" ] |
76 } else { | 76 } else { |
77 sources += [ "application_delegate_factory_default.cc" ] | 77 sources += [ "application_delegate_factory_default.cc" ] |
78 } | 78 } |
79 } | 79 } |
OLD | NEW |