| 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 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", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 proto_library("risk_proto") { | 53 proto_library("risk_proto") { |
| 54 sources = [ | 54 sources = [ |
| 55 "risk/proto/fingerprint.proto", | 55 "risk/proto/fingerprint.proto", |
| 56 ] | 56 ] |
| 57 proto_out_dir = "components/autofill/content/browser/risk/proto" | 57 proto_out_dir = "components/autofill/content/browser/risk/proto" |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("unit_tests") { | 60 source_set("unit_tests") { |
| 61 testonly = true | 61 testonly = true |
| 62 sources = [ | 62 sources = [ |
| 63 "content_autofill_driver_factory_unittest.cc", |
| 63 "content_autofill_driver_unittest.cc", | 64 "content_autofill_driver_unittest.cc", |
| 64 "payments/payments_client_unittest.cc", | 65 "payments/payments_client_unittest.cc", |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 ":browser", | 69 ":browser", |
| 69 "//base", | 70 "//base", |
| 70 "//components/autofill/content/common:mojo_interfaces", | 71 "//components/autofill/content/common:mojo_interfaces", |
| 71 "//components/autofill/core/browser", | 72 "//components/autofill/core/browser", |
| 72 "//components/autofill/core/browser:test_support", | 73 "//components/autofill/core/browser:test_support", |
| 73 "//components/autofill/core/common", | 74 "//components/autofill/core/common", |
| 74 "//content/public/browser", | 75 "//content/public/browser", |
| 75 "//content/public/common", | 76 "//content/public/common", |
| 76 "//content/test:test_support", | 77 "//content/test:test_support", |
| 77 "//google_apis", | 78 "//google_apis", |
| 78 "//google_apis:test_support", | 79 "//google_apis:test_support", |
| 79 "//mojo/common:common_base", | 80 "//mojo/common:common_base", |
| 80 "//net", | 81 "//net", |
| 81 "//net:test_support", | 82 "//net:test_support", |
| 82 "//services/service_manager/public/cpp", | 83 "//services/service_manager/public/cpp", |
| 83 "//testing/gmock", | 84 "//testing/gmock", |
| 84 "//testing/gtest", | 85 "//testing/gtest", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |