| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 component("url_matcher") { | 5 component("url_matcher") { |
| 6 sources = [ | 6 sources = [ |
| 7 "regex_set_matcher.cc", | 7 "regex_set_matcher.cc", |
| 8 "regex_set_matcher.h", | 8 "regex_set_matcher.h", |
| 9 "string_pattern.cc", | 9 "string_pattern.cc", |
| 10 "string_pattern.h", | 10 "string_pattern.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 defines = [ "URL_MATCHER_IMPLEMENTATION" ] | 24 defines = [ "URL_MATCHER_IMPLEMENTATION" ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//base/third_party/dynamic_annotations", | 28 "//base/third_party/dynamic_annotations", |
| 29 "//third_party/re2", | 29 "//third_party/re2", |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 |
| 33 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 32 } | 34 } |
| OLD | NEW |