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

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

Issue 2745803003: autofill-try
Patch Set: before I leave 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 "autofill_provider.cc",
10 "autofill_provider.h",
11 "autofill_provider_android.cc",
12 "autofill_provider_android.h",
9 "content_autofill_driver.cc", 13 "content_autofill_driver.cc",
10 "content_autofill_driver.h", 14 "content_autofill_driver.h",
11 "content_autofill_driver_factory.cc", 15 "content_autofill_driver_factory.cc",
12 "content_autofill_driver_factory.h", 16 "content_autofill_driver_factory.h",
17 "form_data_android.cc",
18 "form_data_android.h",
19 "form_field_data_android.cc",
20 "form_field_data_android.h",
13 "risk/fingerprint.cc", 21 "risk/fingerprint.cc",
14 "risk/fingerprint.h", 22 "risk/fingerprint.h",
15 ] 23 ]
16 24
17 public_deps = [ 25 public_deps = [
18 ":risk_proto", 26 ":risk_proto",
19 "//components/autofill/content/common:mojo_interfaces", 27 "//components/autofill/content/common:mojo_interfaces",
20 "//components/autofill/core/browser", 28 "//components/autofill/core/browser",
21 "//components/autofill/core/common", 29 "//components/autofill/core/common",
22 "//skia", 30 "//skia",
(...skipping 18 matching lines...) Expand all
41 "//services/service_manager/public/cpp", 49 "//services/service_manager/public/cpp",
42 "//sql", 50 "//sql",
43 "//third_party/icu", 51 "//third_party/icu",
44 "//third_party/libphonenumber", 52 "//third_party/libphonenumber",
45 "//ui/base", 53 "//ui/base",
46 "//ui/display", 54 "//ui/display",
47 "//ui/gfx", 55 "//ui/gfx",
48 "//ui/gfx/geometry", 56 "//ui/gfx/geometry",
49 "//url", 57 "//url",
50 ] 58 ]
59
60 if (is_android) {
61 deps += ["//components/autofill/android:jni_headers"]
62 }
51 } 63 }
52 64
53 proto_library("risk_proto") { 65 proto_library("risk_proto") {
54 sources = [ 66 sources = [
55 "risk/proto/fingerprint.proto", 67 "risk/proto/fingerprint.proto",
56 ] 68 ]
57 proto_out_dir = "components/autofill/content/browser/risk/proto" 69 proto_out_dir = "components/autofill/content/browser/risk/proto"
58 } 70 }
59 71
60 source_set("unit_tests") { 72 source_set("unit_tests") {
(...skipping 16 matching lines...) Expand all
77 "//google_apis", 89 "//google_apis",
78 "//google_apis:test_support", 90 "//google_apis:test_support",
79 "//mojo/common:common_base", 91 "//mojo/common:common_base",
80 "//net", 92 "//net",
81 "//net:test_support", 93 "//net:test_support",
82 "//services/service_manager/public/cpp", 94 "//services/service_manager/public/cpp",
83 "//testing/gmock", 95 "//testing/gmock",
84 "//testing/gtest", 96 "//testing/gtest",
85 ] 97 ]
86 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698