Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: services/navigation/BUILD.gn

Issue 2901613002: Remove navigation_service_unittests, along with the service itself. (Closed)
Patch Set: Fix isolate files? Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/webtest/webtest.cc ('k') | services/navigation/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/navigation/BUILD.gn
diff --git a/services/navigation/BUILD.gn b/services/navigation/BUILD.gn
deleted file mode 100644
index e30fe162baf91602c9a0378f7c278fb2bc24f67a..0000000000000000000000000000000000000000
--- a/services/navigation/BUILD.gn
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//services/service_manager/public/cpp/service.gni")
-import("//services/service_manager/public/service_manifest.gni")
-import("//services/service_manager/public/tools/test/service_test.gni")
-import("//testing/test.gni")
-import("//tools/grit/repack.gni")
-
-group("all") {
- testonly = true
- data_deps = [
- ":navigation",
- ":navigation_unittests",
- ]
-}
-
-source_set("navigation") {
- sources = [
- "navigation.cc",
- "navigation.h",
- "view_impl.cc",
- "view_impl.h",
- ]
-
- public_deps = [
- "//base",
- "//content/public/common",
- "//mojo/public/cpp/bindings",
- "//services/navigation/public/interfaces",
- "//services/service_manager/public/cpp",
- "//services/ui/public/interfaces",
- "//ui/aura",
- ]
-
- deps = [
- "//content/public/browser",
- "//skia",
- "//ui/gfx/geometry/mojo",
- "//ui/views",
- "//ui/views/controls/webview",
- "//ui/views/mus",
- ]
-}
-
-service_test("navigation_unittests") {
- sources = [
- "navigation_unittest.cc",
- ]
-
- catalog = ":navigation_unittests_catalog"
-
- deps = [
- "//base",
- "//mojo/public/cpp/bindings",
- "//services/navigation/public/interfaces",
- "//services/service_manager/public/cpp",
- "//services/service_manager/public/cpp:service_test_support",
- "//services/service_manager/public/interfaces",
- "//testing/gtest",
- ]
-
- data_deps = [
- "//content/shell:content_shell",
- "//services/ui/test_wm",
- ]
-}
-
-service_manifest("manifest") {
- name = "navigation"
- source = "manifest.json"
-}
-
-service_manifest("unittest_manifest") {
- name = "navigation_unittests"
- source = "unittest_manifest.json"
-}
-
-catalog("navigation_unittests_catalog") {
- embedded_services = [ ":unittest_manifest" ]
- standalone_services = [
- ":manifest",
- "//services/ui:manifest",
- "//services/ui/test_wm:manifest",
- ]
-}
« no previous file with comments | « mash/webtest/webtest.cc ('k') | services/navigation/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698