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

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

Issue 2640903006: Show FormNotSecure warnings on sensitive inputs in non-secure contexts (Closed)
Patch Set: Convert ui_interactive_test to use HTTPS to avoid breakage Created 3 years, 10 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 12 matching lines...) Expand all
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698