| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 testonly = true | 123 testonly = true |
| 124 sources = [ | 124 sources = [ |
| 125 "fake_affiliation_api.cc", | 125 "fake_affiliation_api.cc", |
| 126 "fake_affiliation_api.h", | 126 "fake_affiliation_api.h", |
| 127 "fake_affiliation_fetcher.cc", | 127 "fake_affiliation_fetcher.cc", |
| 128 "fake_affiliation_fetcher.h", | 128 "fake_affiliation_fetcher.h", |
| 129 "mock_affiliation_consumer.cc", | 129 "mock_affiliation_consumer.cc", |
| 130 "mock_affiliation_consumer.h", | 130 "mock_affiliation_consumer.h", |
| 131 "mock_password_store.cc", | 131 "mock_password_store.cc", |
| 132 "mock_password_store.h", | 132 "mock_password_store.h", |
| 133 "password_form_data.cc", | 133 "password_manager_test_utils.cc", |
| 134 "password_form_data.h", | 134 "password_manager_test_utils.h", |
| 135 "stub_password_manager_client.cc", | 135 "stub_password_manager_client.cc", |
| 136 "stub_password_manager_client.h", | 136 "stub_password_manager_client.h", |
| 137 "stub_password_manager_driver.cc", | 137 "stub_password_manager_driver.cc", |
| 138 "stub_password_manager_driver.h", | 138 "stub_password_manager_driver.h", |
| 139 "test_password_store.cc", | 139 "test_password_store.cc", |
| 140 "test_password_store.h", | 140 "test_password_store.h", |
| 141 ] | 141 ] |
| 142 | 142 |
| 143 public_deps = [ | 143 public_deps = [ |
| 144 ":browser", | 144 ":browser", |
| 145 ] | 145 ] |
| 146 deps = [ | 146 deps = [ |
| 147 "//base", | 147 "//base", |
| 148 "//components/autofill/core/common", | 148 "//components/autofill/core/common", |
| 149 "//testing/gmock", | 149 "//testing/gmock", |
| 150 "//testing/gtest", | 150 "//testing/gtest", |
| 151 ] | 151 ] |
| 152 } | 152 } |
| OLD | NEW |