| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "signin_header_helper_unittest.cc", | 155 "signin_header_helper_unittest.cc", |
| 156 "signin_investigator_unittest.cc", | 156 "signin_investigator_unittest.cc", |
| 157 "signin_status_metrics_provider_unittest.cc", | 157 "signin_status_metrics_provider_unittest.cc", |
| 158 "webdata/token_service_table_unittest.cc", | 158 "webdata/token_service_table_unittest.cc", |
| 159 ] | 159 ] |
| 160 | 160 |
| 161 deps = [ | 161 deps = [ |
| 162 ":test_support", | 162 ":test_support", |
| 163 "//components/content_settings/core/browser", | 163 "//components/content_settings/core/browser", |
| 164 "//components/os_crypt:test_support", | 164 "//components/os_crypt:test_support", |
| 165 "//components/pref_registry:test_support", | 165 "//components/pref_registry:pref_registry", |
| 166 "//components/signin/core/common", | 166 "//components/signin/core/common", |
| 167 "//components/sync_preferences:test_support", |
| 167 "//testing/gmock", | 168 "//testing/gmock", |
| 168 ] | 169 ] |
| 169 | 170 |
| 170 if (is_chromeos) { | 171 if (is_chromeos) { |
| 171 sources -= [ | 172 sources -= [ |
| 172 "account_investigator_unittest.cc", | 173 "account_investigator_unittest.cc", |
| 173 "signin_status_metrics_provider_unittest.cc", | 174 "signin_status_metrics_provider_unittest.cc", |
| 174 ] | 175 ] |
| 175 } | 176 } |
| 176 } | 177 } |
| 177 | 178 |
| 178 if (is_android) { | 179 if (is_android) { |
| 179 java_cpp_enum("investigated_scenario_java") { | 180 java_cpp_enum("investigated_scenario_java") { |
| 180 sources = [ | 181 sources = [ |
| 181 "signin_investigator.h", | 182 "signin_investigator.h", |
| 182 ] | 183 ] |
| 183 } | 184 } |
| 184 } | 185 } |
| OLD | NEW |