| # Copyright 2020 The Chromium Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| source_set("web_share_target") { | |
| sources = [ | |
| "target_util.cc", | |
| "target_util.h", | |
| ] | |
| deps = [ "//net" ] | |
| public_deps = [ | |
| "//base", | |
| "//services/network/public/cpp:cpp_base", | |
| ] | |
| } | |
| source_set("unit_tests") { | |
| testonly = true | |
| sources = [ "target_util_unittest.cc" ] | |
| deps = [ | |
| ":web_share_target", | |
| "//testing/gtest", | |
| ] | |
| } |