| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//mojo/message_pump", | 53 "//mojo/message_pump", |
| 54 "//mojo/services/tracing:lib", | 54 "//mojo/services/tracing:lib", |
| 55 "//third_party/icu", | 55 "//third_party/icu", |
| 56 "//third_party/mojo/src/mojo/public/cpp/bindings", | 56 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 57 "//url", | 57 "//url", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 if (!is_android) { | 60 if (!is_android) { |
| 61 sources += [ "application_delegate_factory_notandroid.cc" ] | 61 sources += [ "application_delegate_factory_notandroid.cc" ] |
| 62 deps += [ | 62 deps += [ |
| 63 "//components/mus:lib", |
| 63 "//components/resource_provider:lib", | 64 "//components/resource_provider:lib", |
| 64 "//components/view_manager:lib", | |
| 65 "//mojo/services/network:lib", | 65 "//mojo/services/network:lib", |
| 66 ] | 66 ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 if (is_linux) { | 69 if (is_linux) { |
| 70 deps += [ "//components/font_service:lib" ] | 70 deps += [ "//components/font_service:lib" ] |
| 71 } else { | 71 } else { |
| 72 sources += [ "application_delegate_factory_default.cc" ] | 72 sources += [ "application_delegate_factory_default.cc" ] |
| 73 } | 73 } |
| 74 | 74 |
| 75 if (use_aura) { | 75 if (use_aura) { |
| 76 deps += [ | 76 deps += [ |
| 77 "//components/view_manager/public/cpp", | 77 "//components/mus/public/cpp", |
| 78 "//mandoline/ui/desktop_ui:lib", | 78 "//mandoline/ui/desktop_ui:lib", |
| 79 "//mandoline/ui/omnibox:lib", | 79 "//mandoline/ui/omnibox:lib", |
| 80 ] | 80 ] |
| 81 sources += [ "application_delegate_factory_aura.cc" ] | 81 sources += [ "application_delegate_factory_aura.cc" ] |
| 82 } | 82 } |
| 83 } | 83 } |
| OLD | NEW |