| 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("//services/service_manager/public/cpp/service.gni") | 5 import("//services/service_manager/public/cpp/service.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 group("all") { | 10 group("all") { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "view_impl.cc", | 22 "view_impl.cc", |
| 23 "view_impl.h", | 23 "view_impl.h", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 public_deps = [ | 26 public_deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//content/public/common", | 28 "//content/public/common", |
| 29 "//mojo/public/cpp/bindings", | 29 "//mojo/public/cpp/bindings", |
| 30 "//services/navigation/public/interfaces", | 30 "//services/navigation/public/interfaces", |
| 31 "//services/service_manager/public/cpp", | 31 "//services/service_manager/public/cpp", |
| 32 "//services/ui/public/cpp", | 32 "//services/ui/public/interfaces", |
| 33 "//ui/aura", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 deps = [ | 36 deps = [ |
| 36 "//content/public/browser", | 37 "//content/public/browser", |
| 37 "//skia", | 38 "//skia", |
| 38 "//ui/gfx/geometry/mojo", | 39 "//ui/gfx/geometry/mojo", |
| 39 "//ui/views", | 40 "//ui/views", |
| 40 "//ui/views/controls/webview", | 41 "//ui/views/controls/webview", |
| 41 "//ui/views/mus", | 42 "//ui/views/mus", |
| 42 ] | 43 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 66 | 67 |
| 67 service_manifest("manifest") { | 68 service_manifest("manifest") { |
| 68 name = "navigation" | 69 name = "navigation" |
| 69 source = "manifest.json" | 70 source = "manifest.json" |
| 70 } | 71 } |
| 71 | 72 |
| 72 service_manifest("unittest_manifest") { | 73 service_manifest("unittest_manifest") { |
| 73 name = "navigation_unittests" | 74 name = "navigation_unittests" |
| 74 source = "unittest_manifest.json" | 75 source = "unittest_manifest.json" |
| 75 } | 76 } |
| OLD | NEW |