Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("pp_service") { | |
|
blundell
2017/03/02 15:54:02
nit: you should just call these targets password_p
Jialiu Lin
2017/03/02 19:02:50
Done.
| |
| 6 sources = [ | |
| 7 "password_protection_service.cc", | |
| 8 "password_protection_service.h", | |
| 9 ] | |
| 10 | |
| 11 deps = [ | |
| 12 "//base:base", | |
| 13 "//components/history/core/browser:browser", | |
| 14 "//components/safe_browsing_db:database_manager", | |
| 15 "//content/public/browser:browser", | |
| 16 "//third_party/protobuf:protobuf_lite", | |
| 17 ] | |
| 18 } | |
| 19 | |
| 20 source_set("pp_service_unittest") { | |
| 21 testonly = true | |
| 22 sources = [ | |
| 23 "password_protection_service_unittest.cc", | |
| 24 ] | |
| 25 deps = [ | |
| 26 ":pp_service", | |
| 27 "//base", | |
| 28 "//base/test:test_support", | |
| 29 "//components/safe_browsing_db:test_database_manager", | |
| 30 "//content/test:test_support", | |
| 31 "//testing/gmock", | |
| 32 "//testing/gtest", | |
| 33 "//third_party/protobuf:protobuf_lite", | |
| 34 ] | |
| 35 } | |
| OLD | NEW |