| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 public_deps = [ | 66 public_deps = [ |
| 67 ":renderer", | 67 ":renderer", |
| 68 "//base", | 68 "//base", |
| 69 ] | 69 ] |
| 70 deps = [ | 70 deps = [ |
| 71 "//components/autofill/content/renderer", | 71 "//components/autofill/content/renderer", |
| 72 "//ipc", | 72 "//ipc", |
| 73 "//skia", | 73 "//skia", |
| 74 "//third_party/WebKit/public:blink", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| 76 | 77 |
| 77 source_set("unit_tests") { | 78 source_set("unit_tests") { |
| 78 testonly = true | 79 testonly = true |
| 79 sources = [ | 80 sources = [ |
| 80 "renderer_save_password_progress_logger_unittest.cc", | 81 "renderer_save_password_progress_logger_unittest.cc", |
| 81 ] | 82 ] |
| 82 | 83 |
| 83 deps = [ | 84 deps = [ |
| 84 ":test_support", | 85 ":test_support", |
| 85 "//components/autofill/content/common:mojo_interfaces", | 86 "//components/autofill/content/common:mojo_interfaces", |
| 86 "//testing/gtest", | 87 "//testing/gtest", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| OLD | NEW |