| OLD | NEW |
| 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 # GYP version: components/autofill.gypi:autofill_content_browser | 7 # GYP version: components/autofill.gypi:autofill_content_browser |
| 8 static_library("browser") { | 8 static_library("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "content_autofill_driver.cc", | 10 "content_autofill_driver.cc", |
| 11 "content_autofill_driver.h", | 11 "content_autofill_driver.h", |
| 12 "content_autofill_driver_factory.cc", | 12 "content_autofill_driver_factory.cc", |
| 13 "content_autofill_driver_factory.h", | 13 "content_autofill_driver_factory.h", |
| 14 "risk/fingerprint.cc", | 14 "risk/fingerprint.cc", |
| 15 "risk/fingerprint.h", | 15 "risk/fingerprint.h", |
| 16 "wallet/wallet_service_url.cc", | |
| 17 "wallet/wallet_service_url.h", | |
| 18 ] | 16 ] |
| 19 | 17 |
| 20 configs += [ "//components/autofill/core/browser:wallet_service" ] | 18 configs += [ "//components/autofill/core/browser:payments_service" ] |
| 21 | 19 |
| 22 public_deps = [ | 20 public_deps = [ |
| 23 ":risk_proto", | 21 ":risk_proto", |
| 24 "//skia", | 22 "//skia", |
| 25 ] | 23 ] |
| 26 deps = [ | 24 deps = [ |
| 27 "//base", | 25 "//base", |
| 28 "//base:i18n", | 26 "//base:i18n", |
| 29 "//components/autofill/content/common", | 27 "//components/autofill/content/common", |
| 30 "//components/autofill/content/public/interfaces", | 28 "//components/autofill/content/public/interfaces", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 57 sources = [ | 55 sources = [ |
| 58 "risk/proto/fingerprint.proto", | 56 "risk/proto/fingerprint.proto", |
| 59 ] | 57 ] |
| 60 proto_out_dir = "components/autofill/content/browser/risk/proto" | 58 proto_out_dir = "components/autofill/content/browser/risk/proto" |
| 61 } | 59 } |
| 62 | 60 |
| 63 source_set("unit_tests") { | 61 source_set("unit_tests") { |
| 64 testonly = true | 62 testonly = true |
| 65 sources = [ | 63 sources = [ |
| 66 "content_autofill_driver_unittest.cc", | 64 "content_autofill_driver_unittest.cc", |
| 67 "wallet/payments_client_unittest.cc", | 65 "payments/payments_client_unittest.cc", |
| 68 "wallet/wallet_service_url_unittest.cc", | |
| 69 ] | 66 ] |
| 70 | 67 |
| 71 deps = [ | 68 deps = [ |
| 72 ":browser", | 69 ":browser", |
| 73 "//base", | 70 "//base", |
| 74 "//components/autofill/content/common", | 71 "//components/autofill/content/common", |
| 75 "//components/autofill/core/browser", | 72 "//components/autofill/core/browser", |
| 76 "//components/autofill/core/browser:test_support", | 73 "//components/autofill/core/browser:test_support", |
| 77 "//components/autofill/core/common", | 74 "//components/autofill/core/common", |
| 78 "//content/public/browser", | 75 "//content/public/browser", |
| 79 "//content/public/common", | 76 "//content/public/common", |
| 80 "//content/test:test_support", | 77 "//content/test:test_support", |
| 81 "//google_apis", | 78 "//google_apis", |
| 82 "//google_apis:test_support", | 79 "//google_apis:test_support", |
| 83 "//ipc:test_support", | 80 "//ipc:test_support", |
| 84 "//net", | 81 "//net", |
| 85 "//net:test_support", | 82 "//net:test_support", |
| 86 "//testing/gmock", | 83 "//testing/gmock", |
| 87 "//testing/gtest", | 84 "//testing/gtest", |
| 88 ] | 85 ] |
| 89 } | 86 } |
| OLD | NEW |