| # Copyright 2015 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. |
| |
| source_set("content") { |
| sources = [ |
| "content_favicon_driver.cc", |
| "content_favicon_driver.h", |
| "favicon_url_util.cc", |
| "favicon_url_util.h", |
| ] |
| |
| public_deps = [ |
| "//ui/gfx", |
| ] |
| deps = [ |
| "//base", |
| "//components/favicon/core", |
| "//components/favicon_base", |
| "//components/history/core/browser", |
| "//content/public/browser", |
| "//content/public/common", |
| "//url", |
| ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| sources = [ |
| "content_favicon_driver_unittest.cc", |
| ] |
| deps = [ |
| ":content", |
| "//components/favicon/core", |
| "//content/public/browser", |
| "//content/public/common", |
| "//content/test:test_support", |
| "//skia", |
| "//testing/gtest", |
| ] |
| } |