| 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 static_library("renderer") { | 5 static_library("renderer") { |
| 6 sources = [ | 6 sources = [ |
| 7 "autofill_agent.cc", | 7 "autofill_agent.cc", |
| 8 "autofill_agent.h", | 8 "autofill_agent.h", |
| 9 "form_autofill_util.cc", | 9 "form_autofill_util.cc", |
| 10 "form_autofill_util.h", | 10 "form_autofill_util.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 source_set("test_support") { | 47 source_set("test_support") { |
| 48 testonly = true | 48 testonly = true |
| 49 sources = [ | 49 sources = [ |
| 50 "test_password_autofill_agent.cc", | 50 "test_password_autofill_agent.cc", |
| 51 "test_password_autofill_agent.h", | 51 "test_password_autofill_agent.h", |
| 52 "test_password_generation_agent.cc", | 52 "test_password_generation_agent.cc", |
| 53 "test_password_generation_agent.h", | 53 "test_password_generation_agent.h", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 public_deps = [ |
| 57 ":renderer", |
| 58 "//base", |
| 59 ] |
| 56 deps = [ | 60 deps = [ |
| 57 "//base", | |
| 58 "//components/autofill/content/renderer", | 61 "//components/autofill/content/renderer", |
| 59 "//ipc", | 62 "//ipc", |
| 60 "//skia", | 63 "//skia", |
| 61 ] | 64 ] |
| 62 } | 65 } |
| 66 |
| 67 source_set("unit_tests") { |
| 68 testonly = true |
| 69 sources = [ |
| 70 "renderer_save_password_progress_logger_unittest.cc", |
| 71 ] |
| 72 |
| 73 deps = [ |
| 74 ":test_support", |
| 75 "//components/autofill/content/common", |
| 76 "//ipc:test_support", |
| 77 "//testing/gtest", |
| 78 ] |
| 79 } |
| OLD | NEW |