blob: d53a4dfe4e6b7af1a078db156ba2f8004ed7c9c6 [file] [log] [blame]
# Copyright 2018 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("api") {
public_deps = [
"public:api",
]
deps = [
"impl",
]
}
source_set("api_with_chromium_quic") {
public_deps = [
":api",
]
deps = [
"impl:chromium_quic_integration",
]
}
source_set("api_unittests") {
testonly = true
sources = [
"impl/mdns_responder_service_unittest.cc",
"impl/presentation/url_availability_requester_unittest.cc",
"impl/quic/quic_client_unittest.cc",
"impl/quic/quic_server_unittest.cc",
"impl/screen_list_unittest.cc",
"impl/screen_listener_impl_unittest.cc",
"impl/screen_publisher_impl_unittest.cc",
"public/message_demuxer_unittest.cc",
"public/screen_info_unittest.cc",
]
deps = [
":api",
"impl/quic:test_support",
"impl/testing",
"impl/testing:fakes_unittests",
"//third_party/abseil",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}