| # 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", |
| ] |
| } |