| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("browser") { | 9 static_library("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 source_set("unit_tests") { | 146 source_set("unit_tests") { |
| 147 testonly = true | 147 testonly = true |
| 148 sources = [ | 148 sources = [ |
| 149 "account_info_unittest.cc", | 149 "account_info_unittest.cc", |
| 150 "account_investigator_unittest.cc", | 150 "account_investigator_unittest.cc", |
| 151 "account_tracker_service_unittest.cc", | 151 "account_tracker_service_unittest.cc", |
| 152 "gaia_cookie_manager_service_unittest.cc", | 152 "gaia_cookie_manager_service_unittest.cc", |
| 153 "refresh_token_annotation_request_unittest.cc", | 153 "refresh_token_annotation_request_unittest.cc", |
| 154 "signin_error_controller_unittest.cc", | 154 "signin_error_controller_unittest.cc", |
| 155 "signin_header_helper_unittest.cc", |
| 155 "signin_investigator_unittest.cc", | 156 "signin_investigator_unittest.cc", |
| 156 "signin_status_metrics_provider_unittest.cc", | 157 "signin_status_metrics_provider_unittest.cc", |
| 157 "webdata/token_service_table_unittest.cc", | 158 "webdata/token_service_table_unittest.cc", |
| 158 ] | 159 ] |
| 159 | 160 |
| 160 deps = [ | 161 deps = [ |
| 161 ":test_support", | 162 ":test_support", |
| 163 "//components/content_settings/core/browser", |
| 162 "//components/os_crypt:test_support", | 164 "//components/os_crypt:test_support", |
| 165 "//components/pref_registry:test_support", |
| 163 "//components/signin/core/common", | 166 "//components/signin/core/common", |
| 164 "//components/syncable_prefs:test_support", | 167 "//components/syncable_prefs:test_support", |
| 165 "//testing/gmock", | 168 "//testing/gmock", |
| 166 ] | 169 ] |
| 167 | 170 |
| 168 if (is_chromeos) { | 171 if (is_chromeos) { |
| 169 sources -= [ | 172 sources -= [ |
| 170 "account_investigator_unittest.cc", | 173 "account_investigator_unittest.cc", |
| 171 "signin_status_metrics_provider_unittest.cc", | 174 "signin_status_metrics_provider_unittest.cc", |
| 172 ] | 175 ] |
| 173 } | 176 } |
| 174 } | 177 } |
| 175 | 178 |
| 176 if (is_android) { | 179 if (is_android) { |
| 177 java_cpp_enum("investigated_scenario_java") { | 180 java_cpp_enum("investigated_scenario_java") { |
| 178 sources = [ | 181 sources = [ |
| 179 "signin_investigator.h", | 182 "signin_investigator.h", |
| 180 ] | 183 ] |
| 181 } | 184 } |
| 182 } | 185 } |
| OLD | NEW |