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_reconcilor.cc", | 9 "account_reconcilor.cc", |
10 "account_reconcilor.h", | 10 "account_reconcilor.h", |
11 "account_service_flag_fetcher.cc", | 11 "account_service_flag_fetcher.cc", |
12 "account_service_flag_fetcher.h", | 12 "account_service_flag_fetcher.h", |
| 13 "account_tracker_service.cc", |
| 14 "account_tracker_service.h", |
13 "mutable_profile_oauth2_token_service.cc", | 15 "mutable_profile_oauth2_token_service.cc", |
14 "mutable_profile_oauth2_token_service.h", | 16 "mutable_profile_oauth2_token_service.h", |
15 "profile_oauth2_token_service.cc", | 17 "profile_oauth2_token_service.cc", |
16 "profile_oauth2_token_service.h", | 18 "profile_oauth2_token_service.h", |
17 "signin_account_id_helper.cc", | 19 "signin_account_id_helper.cc", |
18 "signin_account_id_helper.h", | 20 "signin_account_id_helper.h", |
19 "signin_client.h", | 21 "signin_client.h", |
20 "signin_error_controller.cc", | 22 "signin_error_controller.cc", |
21 "signin_error_controller.h", | 23 "signin_error_controller.h", |
22 "signin_internals_util.cc", | 24 "signin_internals_util.cc", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "fake_auth_status_provider.h", | 78 "fake_auth_status_provider.h", |
77 "test_signin_client.cc", | 79 "test_signin_client.cc", |
78 "test_signin_client.h", | 80 "test_signin_client.h", |
79 ] | 81 ] |
80 | 82 |
81 deps = [ | 83 deps = [ |
82 ":browser", | 84 ":browser", |
83 "//testing/gtest", | 85 "//testing/gtest", |
84 ] | 86 ] |
85 } | 87 } |
OLD | NEW |