| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//base", | 21 "//base", |
| 22 "//content/public/common:service_names", | 22 "//content/public/common:service_names", |
| 23 "//mash/public/interfaces", | 23 "//mash/public/interfaces", |
| 24 "//mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
| 25 "//services/catalog/public/interfaces", | 25 "//services/catalog/public/interfaces", |
| 26 "//services/navigation/public/cpp", | 26 "//services/navigation/public/cpp", |
| 27 "//services/navigation/public/interfaces", | 27 "//services/navigation/public/interfaces", |
| 28 "//services/service_manager/public/cpp", | 28 "//services/service_manager/public/cpp", |
| 29 "//services/service_manager/public/interfaces", | 29 "//services/service_manager/public/interfaces", |
| 30 "//services/tracing/public/cpp", | 30 "//services/tracing/public/cpp", |
| 31 "//services/ui/public/cpp", | 31 "//ui/aura", |
| 32 "//ui/gfx/geometry/mojo", | 32 "//ui/gfx/geometry/mojo", |
| 33 "//ui/native_theme", | 33 "//ui/native_theme", |
| 34 "//ui/views", | 34 "//ui/views", |
| 35 "//ui/views/mus:for_mojo_application", | 35 "//ui/views/mus:for_mojo_application", |
| 36 "//url", | 36 "//url", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 data_deps = [ | 39 data_deps = [ |
| 40 "//services/navigation", | 40 "//services/navigation", |
| 41 ] | 41 ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 58 data_deps = [ | 58 data_deps = [ |
| 59 ":manifest", | 59 ":manifest", |
| 60 "//services/ui", | 60 "//services/ui", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 service_manifest("manifest") { | 64 service_manifest("manifest") { |
| 65 name = "browser" | 65 name = "browser" |
| 66 source = "manifest.json" | 66 source = "manifest.json" |
| 67 } | 67 } |
| OLD | NEW |