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

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

Issue 2762233004: Fix autofill popup controller key press callback registration (Closed)
Patch Set: Fix typo Created 3 years, 8 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 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 static_library("browser") { 7 static_library("browser") {
8 sources = [ 8 sources = [
9 "content_autofill_driver.cc", 9 "content_autofill_driver.cc",
10 "content_autofill_driver.h", 10 "content_autofill_driver.h",
11 "content_autofill_driver_factory.cc", 11 "content_autofill_driver_factory.cc",
12 "content_autofill_driver_factory.h", 12 "content_autofill_driver_factory.h",
13 "key_press_handler_manager.cc",
14 "key_press_handler_manager.h",
13 "risk/fingerprint.cc", 15 "risk/fingerprint.cc",
14 "risk/fingerprint.h", 16 "risk/fingerprint.h",
15 ] 17 ]
16 18
17 public_deps = [ 19 public_deps = [
18 ":risk_proto", 20 ":risk_proto",
19 "//components/autofill/content/common:mojo_interfaces", 21 "//components/autofill/content/common:mojo_interfaces",
20 "//components/autofill/core/browser", 22 "//components/autofill/core/browser",
21 "//components/autofill/core/common", 23 "//components/autofill/core/common",
22 "//skia", 24 "//skia",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 sources = [ 56 sources = [
55 "risk/proto/fingerprint.proto", 57 "risk/proto/fingerprint.proto",
56 ] 58 ]
57 proto_out_dir = "components/autofill/content/browser/risk/proto" 59 proto_out_dir = "components/autofill/content/browser/risk/proto"
58 } 60 }
59 61
60 source_set("unit_tests") { 62 source_set("unit_tests") {
61 testonly = true 63 testonly = true
62 sources = [ 64 sources = [
63 "content_autofill_driver_unittest.cc", 65 "content_autofill_driver_unittest.cc",
66 "key_press_handler_manager_unittest.cc",
64 "payments/payments_client_unittest.cc", 67 "payments/payments_client_unittest.cc",
65 ] 68 ]
66 69
67 deps = [ 70 deps = [
68 ":browser", 71 ":browser",
69 "//base", 72 "//base",
70 "//components/autofill/content/common:mojo_interfaces", 73 "//components/autofill/content/common:mojo_interfaces",
71 "//components/autofill/core/browser", 74 "//components/autofill/core/browser",
72 "//components/autofill/core/browser:test_support", 75 "//components/autofill/core/browser:test_support",
73 "//components/autofill/core/common", 76 "//components/autofill/core/common",
74 "//content/public/browser", 77 "//content/public/browser",
75 "//content/public/common", 78 "//content/public/common",
76 "//content/test:test_support", 79 "//content/test:test_support",
77 "//google_apis", 80 "//google_apis",
78 "//google_apis:test_support", 81 "//google_apis:test_support",
79 "//mojo/common:common_base", 82 "//mojo/common:common_base",
80 "//net", 83 "//net",
81 "//net:test_support", 84 "//net:test_support",
82 "//services/service_manager/public/cpp", 85 "//services/service_manager/public/cpp",
83 "//testing/gmock", 86 "//testing/gmock",
84 "//testing/gtest", 87 "//testing/gtest",
85 ] 88 ]
86 } 89 }
OLDNEW
« no previous file with comments | « chrome/test/data/autofill/cross_origin_iframe.html ('k') | components/autofill/content/browser/content_autofill_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698