# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//testing/test.gni")
source_set("common") {
public = [
"url_loader_throttle.h",
"url_request_rewrite_rules.h",
]
sources = [ "url_loader_throttle.cc" ]
deps = [
"//net",
"//url",
]
public_deps = [
"//base",
"//components/url_rewrite/mojom",
"//third_party/blink/public/common",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "url_loader_throttle_unittest.cc" ]
deps = [
":common",
"//base/test:test_support",
"//components/url_rewrite/mojom",
"//testing/gmock",
"//testing/gtest",
"//third_party/blink/public/common",
]
}