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

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

Issue 2839023003: WebView autofill implementation (Closed)
Patch Set: fix coordinates Created 3 years, 7 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 "autofill_provider_android.cc",
10 "autofill_provider_android.h",
9 "content_autofill_driver.cc", 11 "content_autofill_driver.cc",
10 "content_autofill_driver.h", 12 "content_autofill_driver.h",
11 "content_autofill_driver_factory.cc", 13 "content_autofill_driver_factory.cc",
12 "content_autofill_driver_factory.h", 14 "content_autofill_driver_factory.h",
13 "key_press_handler_manager.cc", 15 "key_press_handler_manager.cc",
14 "key_press_handler_manager.h", 16 "key_press_handler_manager.h",
15 "risk/fingerprint.cc", 17 "risk/fingerprint.cc",
16 "risk/fingerprint.h", 18 "risk/fingerprint.h",
17 ] 19 ]
18 20
(...skipping 24 matching lines...) Expand all
43 "//services/service_manager/public/cpp", 45 "//services/service_manager/public/cpp",
44 "//sql", 46 "//sql",
45 "//third_party/icu", 47 "//third_party/icu",
46 "//third_party/libphonenumber", 48 "//third_party/libphonenumber",
47 "//ui/base", 49 "//ui/base",
48 "//ui/display", 50 "//ui/display",
49 "//ui/gfx", 51 "//ui/gfx",
50 "//ui/gfx/geometry", 52 "//ui/gfx/geometry",
51 "//url", 53 "//url",
52 ] 54 ]
55
56 if (is_android) {
57 deps += [ "//components/autofill/android:jni_headers" ]
58 }
53 } 59 }
54 60
55 proto_library("risk_proto") { 61 proto_library("risk_proto") {
56 sources = [ 62 sources = [
57 "risk/proto/fingerprint.proto", 63 "risk/proto/fingerprint.proto",
58 ] 64 ]
59 proto_out_dir = "components/autofill/content/browser/risk/proto" 65 proto_out_dir = "components/autofill/content/browser/risk/proto"
60 } 66 }
61 67
62 source_set("unit_tests") { 68 source_set("unit_tests") {
(...skipping 17 matching lines...) Expand all
80 "//google_apis", 86 "//google_apis",
81 "//google_apis:test_support", 87 "//google_apis:test_support",
82 "//mojo/common:common_base", 88 "//mojo/common:common_base",
83 "//net", 89 "//net",
84 "//net:test_support", 90 "//net:test_support",
85 "//services/service_manager/public/cpp", 91 "//services/service_manager/public/cpp",
86 "//testing/gmock", 92 "//testing/gmock",
87 "//testing/gtest", 93 "//testing/gtest",
88 ] 94 ]
89 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698