| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 static_library("common") { | 5 static_library("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 "activation_level.cc", | 7 "activation_level.cc", |
| 8 "activation_level.h", | 8 "activation_level.h", |
| 9 "activation_list.cc", | 9 "activation_list.cc", |
| 10 "activation_list.h", | 10 "activation_list.h", |
| 11 "activation_scope.cc", | 11 "activation_scope.cc", |
| 12 "activation_scope.h", | 12 "activation_scope.h", |
| 13 "activation_state.h", | 13 "activation_state.h", |
| 14 "closed_hash_map.h", | 14 "closed_hash_map.h", |
| 15 "copying_file_stream.cc", | 15 "copying_file_stream.cc", |
| 16 "copying_file_stream.h", | 16 "copying_file_stream.h", |
| 17 "document_load_statistics.h", |
| 18 "document_subresource_filter.cc", |
| 19 "document_subresource_filter.h", |
| 17 "first_party_origin.cc", | 20 "first_party_origin.cc", |
| 18 "first_party_origin.h", | 21 "first_party_origin.h", |
| 19 "fuzzy_pattern_matching.cc", | 22 "fuzzy_pattern_matching.cc", |
| 20 "fuzzy_pattern_matching.h", | 23 "fuzzy_pattern_matching.h", |
| 21 "indexed_ruleset.cc", | 24 "indexed_ruleset.cc", |
| 22 "indexed_ruleset.h", | 25 "indexed_ruleset.h", |
| 23 "knuth_morris_pratt.h", | 26 "knuth_morris_pratt.h", |
| 24 "memory_mapped_ruleset.cc", | 27 "memory_mapped_ruleset.cc", |
| 25 "memory_mapped_ruleset.h", | 28 "memory_mapped_ruleset.h", |
| 26 "ngram_extractor.h", | 29 "ngram_extractor.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//base", | 65 "//base", |
| 63 "//testing/gtest", | 66 "//testing/gtest", |
| 64 "//third_party/protobuf:protobuf_lite", | 67 "//third_party/protobuf:protobuf_lite", |
| 65 ] | 68 ] |
| 66 } | 69 } |
| 67 | 70 |
| 68 source_set("unit_tests") { | 71 source_set("unit_tests") { |
| 69 testonly = true | 72 testonly = true |
| 70 sources = [ | 73 sources = [ |
| 71 "closed_hash_map_unittest.cc", | 74 "closed_hash_map_unittest.cc", |
| 75 "document_subresource_filter_unittest.cc", |
| 72 "first_party_origin_unittest.cc", | 76 "first_party_origin_unittest.cc", |
| 73 "fuzzy_pattern_matching_unittest.cc", | 77 "fuzzy_pattern_matching_unittest.cc", |
| 74 "indexed_ruleset_unittest.cc", | 78 "indexed_ruleset_unittest.cc", |
| 75 "knuth_morris_pratt_unittest.cc", | 79 "knuth_morris_pratt_unittest.cc", |
| 76 "ngram_extractor_unittest.cc", | 80 "ngram_extractor_unittest.cc", |
| 77 "scoped_timers_unittest.cc", | 81 "scoped_timers_unittest.cc", |
| 78 "string_splitter_unittest.cc", | 82 "string_splitter_unittest.cc", |
| 79 "unindexed_ruleset_unittest.cc", | 83 "unindexed_ruleset_unittest.cc", |
| 80 "url_pattern_matching_unittest.cc", | 84 "url_pattern_matching_unittest.cc", |
| 81 ] | 85 ] |
| 82 deps = [ | 86 deps = [ |
| 83 ":common", | 87 ":common", |
| 88 ":test_support", |
| 84 "//base", | 89 "//base", |
| 85 "//base/test:test_support", | 90 "//base/test:test_support", |
| 86 "//testing/gtest", | 91 "//testing/gtest", |
| 87 "//third_party/protobuf:protobuf_lite", | 92 "//third_party/protobuf:protobuf_lite", |
| 88 "//url", | 93 "//url", |
| 89 ] | 94 ] |
| 90 } | 95 } |
| OLD | NEW |