| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'url_matcher', | 8 'target_name': 'url_matcher', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 13 '../out/gn_gyp/third_party/re2/re2.gyp:re2', | 13 '../third_party/re2/re2.gyp:re2', |
| 14 '../url/url.gyp:url_lib', | 14 '../url/url.gyp:url_lib', |
| 15 ], | 15 ], |
| 16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '..', | 17 '..', |
| 18 ], | 18 ], |
| 19 'defines': [ | 19 'defines': [ |
| 20 'URL_MATCHER_IMPLEMENTATION', | 20 'URL_MATCHER_IMPLEMENTATION', |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'url_matcher/regex_set_matcher.cc', | 23 'url_matcher/regex_set_matcher.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 34 'url_matcher/url_matcher_factory.cc', | 34 'url_matcher/url_matcher_factory.cc', |
| 35 'url_matcher/url_matcher_factory.h', | 35 'url_matcher/url_matcher_factory.h', |
| 36 'url_matcher/url_matcher_helpers.cc', | 36 'url_matcher/url_matcher_helpers.cc', |
| 37 'url_matcher/url_matcher_helpers.h', | 37 'url_matcher/url_matcher_helpers.h', |
| 38 ], | 38 ], |
| 39 # Disable c4267 warnings until we fix size_t to int truncations. | 39 # Disable c4267 warnings until we fix size_t to int truncations. |
| 40 'msvs_disabled_warnings': [ 4267, ], | 40 'msvs_disabled_warnings': [ 4267, ], |
| 41 }, | 41 }, |
| 42 ], | 42 ], |
| 43 } | 43 } |
| OLD | NEW |