| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 source_set("password_protection") { | 5 source_set("password_protection") { |
| 6 sources = [ | 6 sources = [ |
| 7 "password_protection_request.cc", | 7 "password_protection_request.cc", |
| 8 "password_protection_request.h", | 8 "password_protection_request.h", |
| 9 "password_protection_service.cc", | 9 "password_protection_service.cc", |
| 10 "password_protection_service.h", | 10 "password_protection_service.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 source_set("password_protection_unittest") { | 31 source_set("password_protection_unittest") { |
| 32 testonly = true | 32 testonly = true |
| 33 sources = [ | 33 sources = [ |
| 34 "password_protection_service_unittest.cc", | 34 "password_protection_service_unittest.cc", |
| 35 ] | 35 ] |
| 36 deps = [ | 36 deps = [ |
| 37 ":password_protection", | 37 ":password_protection", |
| 38 "//base", | 38 "//base", |
| 39 "//base/test:test_support", | 39 "//base/test:test_support", |
| 40 "//components/content_settings/core/browser:browser", |
| 41 "//components/history/core/browser:browser", |
| 40 "//components/safe_browsing_db:test_database_manager", | 42 "//components/safe_browsing_db:test_database_manager", |
| 41 "//components/sync_preferences:test_support", | 43 "//components/sync_preferences:test_support", |
| 42 "//content/test:test_support", | 44 "//content/test:test_support", |
| 43 "//net:test_support", | 45 "//net:test_support", |
| 44 "//testing/gmock", | 46 "//testing/gmock", |
| 45 "//testing/gtest", | 47 "//testing/gtest", |
| 46 "//third_party/protobuf:protobuf_lite", | 48 "//third_party/protobuf:protobuf_lite", |
| 47 ] | 49 ] |
| 48 } | 50 } |
| OLD | NEW |