| 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 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "gaia_cookie_manager_service_unittest.cc", | 145 "gaia_cookie_manager_service_unittest.cc", |
| 146 "refresh_token_annotation_request_unittest.cc", | 146 "refresh_token_annotation_request_unittest.cc", |
| 147 "signin_error_controller_unittest.cc", | 147 "signin_error_controller_unittest.cc", |
| 148 "signin_investigator_unittest.cc", | 148 "signin_investigator_unittest.cc", |
| 149 "signin_status_metrics_provider_unittest.cc", | 149 "signin_status_metrics_provider_unittest.cc", |
| 150 "webdata/token_service_table_unittest.cc", | 150 "webdata/token_service_table_unittest.cc", |
| 151 ] | 151 ] |
| 152 | 152 |
| 153 deps = [ | 153 deps = [ |
| 154 ":test_support", | 154 ":test_support", |
| 155 "//components/os_crypt:os_crypt", | 155 "//components/os_crypt:test_support", |
| 156 "//components/signin/core/common", | 156 "//components/signin/core/common", |
| 157 "//testing/gmock", | 157 "//testing/gmock", |
| 158 ] | 158 ] |
| 159 | 159 |
| 160 if (is_chromeos) { | 160 if (is_chromeos) { |
| 161 sources -= [ "signin_status_metrics_provider_unittest.cc" ] | 161 sources -= [ "signin_status_metrics_provider_unittest.cc" ] |
| 162 } | 162 } |
| 163 } | 163 } |
| 164 | 164 |
| 165 if (is_android) { | 165 if (is_android) { |
| 166 # GYP: //component/signin.gypi:investigated_scenario_java | 166 # GYP: //component/signin.gypi:investigated_scenario_java |
| 167 java_cpp_enum("investigated_scenario_java") { | 167 java_cpp_enum("investigated_scenario_java") { |
| 168 sources = [ | 168 sources = [ |
| 169 "signin_investigator.h", | 169 "signin_investigator.h", |
| 170 ] | 170 ] |
| 171 } | 171 } |
| 172 } | 172 } |
| OLD | NEW |