| 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//mojo/application", | 64 "//mojo/application", |
| 65 "//mojo/common", | 65 "//mojo/common", |
| 66 "//mojo/common:tracing_impl", | 66 "//mojo/common:tracing_impl", |
| 67 "//mojo/environment:chromium", | 67 "//mojo/environment:chromium", |
| 68 "//mojo/services/network:lib", | 68 "//mojo/services/network:lib", |
| 69 "//mojo/services/tracing:lib", | 69 "//mojo/services/tracing:lib", |
| 70 "//third_party/mojo/src/mojo/public/interfaces/application", | 70 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 71 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 71 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
| 72 "//third_party/mojo_services/src/content_handler/public/interfaces", | 72 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 73 ] | 73 ] |
| 74 |
| 75 if (!is_android) { |
| 76 deps += [ |
| 77 "//mandoline/ui/omnibox:lib", |
| 78 "//mojo/services/network:lib", |
| 79 ] |
| 80 } |
| 74 } | 81 } |
| OLD | NEW |