Index: components/search_provider_logos/BUILD.gn |
diff --git a/components/search_provider_logos/BUILD.gn b/components/search_provider_logos/BUILD.gn |
index 2465112d9549718ba407e63cf8a6a58fe40b0494..aa38308a43b7f42a4976156f3f61a6bc620c5f8b 100644 |
--- a/components/search_provider_logos/BUILD.gn |
+++ b/components/search_provider_logos/BUILD.gn |
@@ -2,7 +2,7 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-source_set("search_provider_logos") { |
+static_library("search_provider_logos") { |
sources = [ |
"google_logo_api.cc", |
"google_logo_api.h", |
@@ -14,27 +14,11 @@ |
"logo_tracker.h", |
] |
- public_deps = [ |
+ deps = [ |
"//base", |
+ "//net", |
"//skia", |
- ] |
- |
- deps = [ |
- "//net", |
"//ui/gfx", |
"//url", |
] |
} |
- |
-source_set("unit_tests") { |
- testonly = true |
- sources = [ |
- "logo_cache_unittest.cc", |
- "logo_tracker_unittest.cc", |
- ] |
- deps = [ |
- ":search_provider_logos", |
- "//testing/gmock", |
- "//testing/gtest", |
- ] |
-} |