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