| 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 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 testonly = true | 12 testonly = true |
| 13 sources = [ | 13 sources = [ |
| 14 "browser.cc", | 14 "browser.cc", |
| 15 "browser.h", | 15 "browser.h", |
| 16 "debug_view.cc", | 16 "debug_view.cc", |
| 17 "debug_view.h", | 17 "debug_view.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 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", | |
| 31 "//ui/aura", | 30 "//ui/aura", |
| 32 "//ui/gfx/geometry/mojo", | 31 "//ui/gfx/geometry/mojo", |
| 33 "//ui/native_theme", | 32 "//ui/native_theme", |
| 34 "//ui/views", | 33 "//ui/views", |
| 35 "//ui/views/mus:for_mojo_application", | 34 "//ui/views/mus:for_mojo_application", |
| 36 "//url", | 35 "//url", |
| 37 ] | 36 ] |
| 38 | 37 |
| 39 data_deps = [ | 38 data_deps = [ |
| 40 "//services/navigation", | 39 "//services/navigation", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 57 | 56 |
| 58 data_deps = [ | 57 data_deps = [ |
| 59 "//services/ui", | 58 "//services/ui", |
| 60 ] | 59 ] |
| 61 } | 60 } |
| 62 | 61 |
| 63 service_manifest("manifest") { | 62 service_manifest("manifest") { |
| 64 name = "browser" | 63 name = "browser" |
| 65 source = "manifest.json" | 64 source = "manifest.json" |
| 66 } | 65 } |
| OLD | NEW |