| 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("//mojo/public/mojo_application.gni") | 9 import("//mojo/public/mojo_application.gni") | 
| 10 | 10 | 
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 53   ] | 53   ] | 
| 54 | 54 | 
| 55   if (!is_android) { | 55   if (!is_android) { | 
| 56     deps += [ | 56     deps += [ | 
| 57       "//components/resource_provider:lib", | 57       "//components/resource_provider:lib", | 
| 58       "//components/view_manager:lib", | 58       "//components/view_manager:lib", | 
| 59       "//mojo/services/network:lib", | 59       "//mojo/services/network:lib", | 
| 60     ] | 60     ] | 
| 61   } | 61   } | 
| 62 | 62 | 
|  | 63   if (is_linux && !is_android) { | 
|  | 64     deps += [ "//components/font_service:lib" ] | 
|  | 65   } | 
|  | 66 | 
| 63   if (use_aura) { | 67   if (use_aura) { | 
| 64     deps += [ | 68     deps += [ | 
| 65       "//components/view_manager/public/cpp", | 69       "//components/view_manager/public/cpp", | 
| 66       "//mandoline/ui/omnibox:lib", | 70       "//mandoline/ui/omnibox:lib", | 
| 67     ] | 71     ] | 
| 68   } | 72   } | 
| 69 } | 73 } | 
| OLD | NEW | 
|---|