| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 } | 70 } |
| 71 | 71 |
| 72 source_set("unit_tests") { | 72 source_set("unit_tests") { |
| 73 testonly = true | 73 testonly = true |
| 74 sources = [ | 74 sources = [ |
| 75 "renderer_save_password_progress_logger_unittest.cc", | 75 "renderer_save_password_progress_logger_unittest.cc", |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 deps = [ | 78 deps = [ |
| 79 ":test_support", | 79 ":test_support", |
| 80 "//components/autofill/content/public/interfaces", | 80 "//components/autofill/content/common", |
| 81 "//ipc:test_support", |
| 81 "//testing/gtest", | 82 "//testing/gtest", |
| 82 ] | 83 ] |
| 83 } | 84 } |
| OLD | NEW |