| 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("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "ruleset_service.cc", | 7 "ruleset_service.cc", |
| 8 "ruleset_service.h", | 8 "ruleset_service.h", |
| 9 "ruleset_service_delegate.h", | 9 "ruleset_service_delegate.h", |
| 10 "subresource_filter_constants.cc", | 10 "subresource_filter_constants.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "subresource_filter_features_unittest.cc", | 44 "subresource_filter_features_unittest.cc", |
| 45 ] | 45 ] |
| 46 deps = [ | 46 deps = [ |
| 47 ":browser", | 47 ":browser", |
| 48 ":test_support", | 48 ":test_support", |
| 49 "//base", | 49 "//base", |
| 50 "//base/test:test_support", | 50 "//base/test:test_support", |
| 51 "//components/prefs:test_support", | 51 "//components/prefs:test_support", |
| 52 "//components/subresource_filter/core/common:test_support", | 52 "//components/subresource_filter/core/common:test_support", |
| 53 "//components/subresource_filter/core/common/proto", | 53 "//components/subresource_filter/core/common/proto", |
| 54 "//components/variations", |
| 54 "//testing/gmock", | 55 "//testing/gmock", |
| 55 "//testing/gtest", | 56 "//testing/gtest", |
| 56 "//third_party/protobuf:protobuf_lite", | 57 "//third_party/protobuf:protobuf_lite", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| OLD | NEW |