| 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "about_signin_internals.cc", | 7 "about_signin_internals.cc", |
| 8 "about_signin_internals.h", | 8 "about_signin_internals.h", |
| 9 "account_fetcher_service.cc", | 9 "account_fetcher_service.cc", |
| 10 "account_fetcher_service.h", | 10 "account_fetcher_service.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 | 75 |
| 76 static_library("test_support") { | 76 static_library("test_support") { |
| 77 testonly = true | 77 testonly = true |
| 78 sources = [ | 78 sources = [ |
| 79 "fake_auth_status_provider.cc", | 79 "fake_auth_status_provider.cc", |
| 80 "fake_auth_status_provider.h", | 80 "fake_auth_status_provider.h", |
| 81 "fake_profile_oauth2_token_service.cc", | 81 "fake_profile_oauth2_token_service.cc", |
| 82 "fake_profile_oauth2_token_service.h", | 82 "fake_profile_oauth2_token_service.h", |
| 83 "fake_signin_manager.cc", |
| 84 "fake_signin_manager.h", |
| 83 "test_signin_client.cc", | 85 "test_signin_client.cc", |
| 84 "test_signin_client.h", | 86 "test_signin_client.h", |
| 85 ] | 87 ] |
| 86 | 88 |
| 87 deps = [ | 89 deps = [ |
| 88 ":browser", | 90 ":browser", |
| 89 "//testing/gtest", | 91 "//testing/gtest", |
| 90 ] | 92 ] |
| 91 } | 93 } |
| OLD | NEW |