| 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 12 matching lines...) Expand all Loading... |
| 23 "password_generation_agent.h", | 23 "password_generation_agent.h", |
| 24 "renderer_save_password_progress_logger.cc", | 24 "renderer_save_password_progress_logger.cc", |
| 25 "renderer_save_password_progress_logger.h", | 25 "renderer_save_password_progress_logger.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 deps = [ | 28 deps = [ |
| 29 "//base", | 29 "//base", |
| 30 "//base:i18n", | 30 "//base:i18n", |
| 31 "//components/autofill/content/common:mojo_interfaces", | 31 "//components/autofill/content/common:mojo_interfaces", |
| 32 "//components/autofill/core/common", | 32 "//components/autofill/core/common", |
| 33 |
| 34 # TODO(elawrence): remove security_state/core when the Form-Not-Secure |
| 35 # feature is fully launched. https://crbug.com/677295 |
| 36 "//components/security_state/core", |
| 33 "//components/strings", | 37 "//components/strings", |
| 34 "//content/public/common", | 38 "//content/public/common", |
| 35 "//content/public/renderer", | 39 "//content/public/renderer", |
| 36 "//google_apis", | 40 "//google_apis", |
| 37 "//ipc", | 41 "//ipc", |
| 38 "//mojo/common:common_base", | 42 "//mojo/common:common_base", |
| 39 "//net", | 43 "//net", |
| 40 "//services/service_manager/public/cpp", | 44 "//services/service_manager/public/cpp", |
| 41 "//skia", | 45 "//skia", |
| 42 "//third_party/WebKit/public:blink", | 46 "//third_party/WebKit/public:blink", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 73 sources = [ | 77 sources = [ |
| 74 "renderer_save_password_progress_logger_unittest.cc", | 78 "renderer_save_password_progress_logger_unittest.cc", |
| 75 ] | 79 ] |
| 76 | 80 |
| 77 deps = [ | 81 deps = [ |
| 78 ":test_support", | 82 ":test_support", |
| 79 "//components/autofill/content/common:mojo_interfaces", | 83 "//components/autofill/content/common:mojo_interfaces", |
| 80 "//testing/gtest", | 84 "//testing/gtest", |
| 81 ] | 85 ] |
| 82 } | 86 } |
| OLD | NEW |