| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("browser") { | 5 source_set("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "bad_message.cc", | 7 "bad_message.cc", |
| 8 "bad_message.h", | 8 "bad_message.h", |
| 9 "content_password_manager_driver.cc", | 9 "content_password_manager_driver.cc", |
| 10 "content_password_manager_driver.h", | 10 "content_password_manager_driver.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "//content/public/browser", | 27 "//content/public/browser", |
| 28 "//content/public/common", | 28 "//content/public/common", |
| 29 "//ipc", | 29 "//ipc", |
| 30 "//net", | 30 "//net", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 | 33 |
| 34 source_set("unit_tests") { | 34 source_set("unit_tests") { |
| 35 testonly = true | 35 testonly = true |
| 36 sources = [ | 36 sources = [ |
| 37 "content_password_manager_driver_unittest.cc", |
| 37 "credential_manager_dispatcher_unittest.cc", | 38 "credential_manager_dispatcher_unittest.cc", |
| 38 ] | 39 ] |
| 39 deps = [ | 40 deps = [ |
| 40 ":browser", | 41 ":browser", |
| 41 "//testing/gmock", | 42 "//testing/gmock", |
| 42 "//testing/gtest", | 43 "//testing/gtest", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| OLD | NEW |