| 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 "request_autocomplete_manager.cc", | |
| 15 "request_autocomplete_manager.h", | |
| 16 "risk/fingerprint.cc", | 14 "risk/fingerprint.cc", |
| 17 "risk/fingerprint.h", | 15 "risk/fingerprint.h", |
| 18 "wallet/full_wallet.cc", | |
| 19 "wallet/full_wallet.h", | |
| 20 "wallet/wallet_address.cc", | |
| 21 "wallet/wallet_address.h", | |
| 22 "wallet/wallet_service_url.cc", | 16 "wallet/wallet_service_url.cc", |
| 23 "wallet/wallet_service_url.h", | 17 "wallet/wallet_service_url.h", |
| 24 ] | 18 ] |
| 25 | 19 |
| 26 configs += [ "//components/autofill/core/browser:wallet_service" ] | 20 configs += [ "//components/autofill/core/browser:wallet_service" ] |
| 27 | 21 |
| 28 public_deps = [ | 22 public_deps = [ |
| 29 ":risk_proto", | 23 ":risk_proto", |
| 30 "//skia", | 24 "//skia", |
| 31 ] | 25 ] |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 sources = [ | 57 sources = [ |
| 64 "risk/proto/fingerprint.proto", | 58 "risk/proto/fingerprint.proto", |
| 65 ] | 59 ] |
| 66 proto_out_dir = "components/autofill/content/browser/risk/proto" | 60 proto_out_dir = "components/autofill/content/browser/risk/proto" |
| 67 } | 61 } |
| 68 | 62 |
| 69 source_set("unit_tests") { | 63 source_set("unit_tests") { |
| 70 testonly = true | 64 testonly = true |
| 71 sources = [ | 65 sources = [ |
| 72 "content_autofill_driver_unittest.cc", | 66 "content_autofill_driver_unittest.cc", |
| 73 "request_autocomplete_manager_unittest.cc", | |
| 74 "wallet/full_wallet_unittest.cc", | |
| 75 "wallet/payments_client_unittest.cc", | 67 "wallet/payments_client_unittest.cc", |
| 76 "wallet/wallet_address_unittest.cc", | |
| 77 "wallet/wallet_service_url_unittest.cc", | 68 "wallet/wallet_service_url_unittest.cc", |
| 78 ] | 69 ] |
| 79 | 70 |
| 80 deps = [ | 71 deps = [ |
| 81 ":browser", | 72 ":browser", |
| 82 "//base", | 73 "//base", |
| 83 "//components/autofill/content/browser/wallet:test_support", | |
| 84 "//components/autofill/content/common", | 74 "//components/autofill/content/common", |
| 85 "//components/autofill/core/browser", | 75 "//components/autofill/core/browser", |
| 86 "//components/autofill/core/browser:test_support", | 76 "//components/autofill/core/browser:test_support", |
| 87 "//components/autofill/core/common", | 77 "//components/autofill/core/common", |
| 88 "//content/public/browser", | 78 "//content/public/browser", |
| 89 "//content/public/common", | 79 "//content/public/common", |
| 90 "//content/test:test_support", | 80 "//content/test:test_support", |
| 91 "//google_apis", | 81 "//google_apis", |
| 92 "//google_apis:test_support", | 82 "//google_apis:test_support", |
| 93 "//ipc:test_support", | 83 "//ipc:test_support", |
| 94 "//net", | 84 "//net", |
| 95 "//net:test_support", | 85 "//net:test_support", |
| 96 "//testing/gmock", | 86 "//testing/gmock", |
| 97 "//testing/gtest", | 87 "//testing/gtest", |
| 98 ] | 88 ] |
| 99 } | 89 } |
| OLD | NEW |