| 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", |
| 8 "password_protection_request.h", |
| 7 "password_protection_service.cc", | 9 "password_protection_service.cc", |
| 8 "password_protection_service.h", | 10 "password_protection_service.h", |
| 9 ] | 11 ] |
| 10 | 12 |
| 13 public_deps = [ |
| 14 "//google_apis:google_apis", |
| 15 ] |
| 16 |
| 11 deps = [ | 17 deps = [ |
| 12 "//base:base", | 18 "//base:base", |
| 13 "//components/content_settings/core/browser:browser", | 19 "//components/content_settings/core/browser:browser", |
| 20 "//components/data_use_measurement/core:core", |
| 14 "//components/history/core/browser:browser", | 21 "//components/history/core/browser:browser", |
| 15 "//components/safe_browsing:csd_proto", | 22 "//components/safe_browsing:csd_proto", |
| 16 "//components/safe_browsing_db:database_manager", | 23 "//components/safe_browsing_db:database_manager", |
| 17 "//components/safe_browsing_db:v4_protocol_manager_util", | 24 "//components/safe_browsing_db:v4_protocol_manager_util", |
| 18 "//content/public/browser:browser", | 25 "//content/public/browser:browser", |
| 26 "//net:net", |
| 19 "//third_party/protobuf:protobuf_lite", | 27 "//third_party/protobuf:protobuf_lite", |
| 20 ] | 28 ] |
| 21 } | 29 } |
| 22 | 30 |
| 23 source_set("password_protection_unittest") { | 31 source_set("password_protection_unittest") { |
| 24 testonly = true | 32 testonly = true |
| 25 sources = [ | 33 sources = [ |
| 26 "password_protection_service_unittest.cc", | 34 "password_protection_service_unittest.cc", |
| 27 ] | 35 ] |
| 28 deps = [ | 36 deps = [ |
| 29 ":password_protection", | 37 ":password_protection", |
| 30 "//base", | 38 "//base", |
| 31 "//base/test:test_support", | 39 "//base/test:test_support", |
| 32 "//components/safe_browsing_db:test_database_manager", | 40 "//components/safe_browsing_db:test_database_manager", |
| 33 "//components/sync_preferences:test_support", | 41 "//components/sync_preferences:test_support", |
| 34 "//content/test:test_support", | 42 "//content/test:test_support", |
| 43 "//net:test_support", |
| 35 "//testing/gmock", | 44 "//testing/gmock", |
| 36 "//testing/gtest", | 45 "//testing/gtest", |
| 37 "//third_party/protobuf:protobuf_lite", | 46 "//third_party/protobuf:protobuf_lite", |
| 38 ] | 47 ] |
| 39 } | 48 } |
| OLD | NEW |