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