| 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 28 matching lines...) Expand all Loading... |
| 39 "application_delegate_factory.h", | 39 "application_delegate_factory.h", |
| 40 "application_delegate_factory_linux.cc", | 40 "application_delegate_factory_linux.cc", |
| 41 "core_services_application_delegate.cc", | 41 "core_services_application_delegate.cc", |
| 42 "main.cc", | 42 "main.cc", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//components/clipboard:lib", | 47 "//components/clipboard:lib", |
| 48 "//components/filesystem:lib", | 48 "//components/filesystem:lib", |
| 49 "//components/view_manager/surfaces:lib", | |
| 50 "//mandoline/tab:lib", | 49 "//mandoline/tab:lib", |
| 51 "//mandoline/ui/browser:lib", | 50 "//mandoline/ui/browser:lib", |
| 52 "//mojo/application/public/cpp", | 51 "//mojo/application/public/cpp", |
| 53 "//mojo/common:tracing_impl", | 52 "//mojo/common:tracing_impl", |
| 54 "//mojo/message_pump", | 53 "//mojo/message_pump", |
| 55 "//mojo/services/tracing:lib", | 54 "//mojo/services/tracing:lib", |
| 56 "//third_party/icu", | 55 "//third_party/icu", |
| 57 "//third_party/mojo/src/mojo/public/cpp/bindings", | 56 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 58 "//url", | 57 "//url", |
| 59 ] | 58 ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 74 } | 73 } |
| 75 | 74 |
| 76 if (use_aura) { | 75 if (use_aura) { |
| 77 deps += [ | 76 deps += [ |
| 78 "//components/view_manager/public/cpp", | 77 "//components/view_manager/public/cpp", |
| 79 "//mandoline/ui/omnibox:lib", | 78 "//mandoline/ui/omnibox:lib", |
| 80 ] | 79 ] |
| 81 sources += [ "application_delegate_factory_aura.cc" ] | 80 sources += [ "application_delegate_factory_aura.cc" ] |
| 82 } | 81 } |
| 83 } | 82 } |
| OLD | NEW |