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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 proto_library("proto") { | 113 proto_library("proto") { |
114 sources = [ | 114 sources = [ |
115 "affiliation_api.proto", | 115 "affiliation_api.proto", |
116 ] | 116 ] |
117 } | 117 } |
118 | 118 |
119 source_set("test_support") { | 119 source_set("test_support") { |
120 testonly = true | 120 testonly = true |
121 sources = [ | 121 sources = [ |
| 122 "fake_affiliation_api.cc", |
| 123 "fake_affiliation_api.h", |
122 "fake_affiliation_fetcher.cc", | 124 "fake_affiliation_fetcher.cc", |
123 "fake_affiliation_fetcher.h", | 125 "fake_affiliation_fetcher.h", |
| 126 "mock_affiliation_consumer.cc", |
| 127 "mock_affiliation_consumer.h", |
124 "mock_password_store.cc", | 128 "mock_password_store.cc", |
125 "mock_password_store.h", | 129 "mock_password_store.h", |
126 "password_form_data.cc", | 130 "password_form_data.cc", |
127 "password_form_data.h", | 131 "password_form_data.h", |
128 "stub_password_manager_client.cc", | 132 "stub_password_manager_client.cc", |
129 "stub_password_manager_client.h", | 133 "stub_password_manager_client.h", |
130 "stub_password_manager_driver.cc", | 134 "stub_password_manager_driver.cc", |
131 "stub_password_manager_driver.h", | 135 "stub_password_manager_driver.h", |
132 "test_password_store.cc", | 136 "test_password_store.cc", |
133 "test_password_store.h", | 137 "test_password_store.h", |
134 ] | 138 ] |
135 | 139 |
136 public_deps = [ | 140 public_deps = [ |
137 ":browser", | 141 ":browser", |
138 ] | 142 ] |
139 deps = [ | 143 deps = [ |
140 "//base", | 144 "//base", |
141 "//components/autofill/core/common", | 145 "//components/autofill/core/common", |
142 "//testing/gmock", | 146 "//testing/gmock", |
143 "//testing/gtest", | 147 "//testing/gtest", |
144 ] | 148 ] |
145 } | 149 } |
OLD | NEW |