blob: 57cd4e71d4310c4a2da0ec1e3eb030827b14501e [file] [log] [blame]
# Copyright 2024 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("url_pattern") {
sources = [
"simple_url_pattern_matcher.cc",
"simple_url_pattern_matcher.h",
"url_pattern_util.cc",
"url_pattern_util.h",
]
public_deps = [
"//base",
"//third_party/liburlpattern",
"//third_party/re2",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "simple_url_pattern_matcher_unittest.cc" ]
deps = [
":url_pattern",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
"//url",
]
}