Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: components/autofill/content/renderer/BUILD.gn

Issue 2915763003: [Password Manager] Show omnibox icon and anchored prompt once user start typing password (Closed)
Patch Set: Sent For Review Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 14 matching lines...) Expand all
25 "provisionally_saved_password_form.h", 25 "provisionally_saved_password_form.h",
26 "renderer_save_password_progress_logger.cc", 26 "renderer_save_password_progress_logger.cc",
27 "renderer_save_password_progress_logger.h", 27 "renderer_save_password_progress_logger.h",
28 ] 28 ]
29 29
30 deps = [ 30 deps = [
31 "//base", 31 "//base",
32 "//base:i18n", 32 "//base:i18n",
33 "//components/autofill/content/common:mojo_interfaces", 33 "//components/autofill/content/common:mojo_interfaces",
34 "//components/autofill/core/common", 34 "//components/autofill/core/common",
35 "//components/password_manager/core/common",
35 36
36 # TODO(elawrence): remove security_state/core when the Form-Not-Secure 37 # TODO(elawrence): remove security_state/core when the Form-Not-Secure
37 # feature is fully launched. https://crbug.com/677295 38 # feature is fully launched. https://crbug.com/677295
38 "//components/security_state/core", 39 "//components/security_state/core",
39 "//components/strings", 40 "//components/strings",
40 "//content/public/common", 41 "//content/public/common",
41 "//content/public/renderer", 42 "//content/public/renderer",
42 "//google_apis", 43 "//google_apis",
43 "//ipc", 44 "//ipc",
44 "//mojo/common:common_base", 45 "//mojo/common:common_base",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 sources = [ 81 sources = [
81 "renderer_save_password_progress_logger_unittest.cc", 82 "renderer_save_password_progress_logger_unittest.cc",
82 ] 83 ]
83 84
84 deps = [ 85 deps = [
85 ":test_support", 86 ":test_support",
86 "//components/autofill/content/common:mojo_interfaces", 87 "//components/autofill/content/common:mojo_interfaces",
87 "//testing/gtest", 88 "//testing/gtest",
88 ] 89 ]
89 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698