summaryrefslogtreecommitdiffstats
path: root/components/url_matcher/BUILD.gn
diff options
context:
space:
mode:
authorrockot@chromium.org <rockot@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-22 15:45:52 +0000
committerrockot@chromium.org <rockot@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-22 15:45:52 +0000
commit303a7ecdd20ffe71c3c8000a6ace2315b63f12e1 (patch)
treee12f2bd1e7bd7a7306a8542c3469c91c11a7b3c9 /components/url_matcher/BUILD.gn
parentdf5fcbbb816123df3a53009b305c162577ba794b (diff)
downloadchromium_src-303a7ecdd20ffe71c3c8000a6ace2315b63f12e1.zip
chromium_src-303a7ecdd20ffe71c3c8000a6ace2315b63f12e1.tar.gz
chromium_src-303a7ecdd20ffe71c3c8000a6ace2315b63f12e1.tar.bz2
Add BUILD.gn for //components/url_matcher
BUG=None TBR=battre Review URL: https://codereview.chromium.org/246713002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265264 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/url_matcher/BUILD.gn')
-rw-r--r--components/url_matcher/BUILD.gn32
1 files changed, 32 insertions, 0 deletions
diff --git a/components/url_matcher/BUILD.gn b/components/url_matcher/BUILD.gn
new file mode 100644
index 0000000..83f95d3
--- /dev/null
+++ b/components/url_matcher/BUILD.gn
@@ -0,0 +1,32 @@
+# Copyright 2014 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.
+
+component("url_matcher") {
+ sources = [
+ "regex_set_matcher.cc",
+ "regex_set_matcher.h",
+ "string_pattern.cc",
+ "string_pattern.h",
+ "substring_set_matcher.cc",
+ "substring_set_matcher.h",
+ "url_matcher.cc",
+ "url_matcher.h",
+ "url_matcher_constants.cc",
+ "url_matcher_constants.h",
+ "url_matcher_export.h",
+ "url_matcher_factory.cc",
+ "url_matcher_factory.h",
+ "url_matcher_helpers.cc",
+ "url_matcher_helpers.h",
+ ]
+
+ defines = [ "URL_MATCHER_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//third_party/re2",
+ "//url",
+ ]
+}