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", | 13 "account_tracker_service.cc", |
14 "account_tracker_service.h", | 14 "account_tracker_service.h", |
| 15 "device_activity_fetcher.cc", |
| 16 "device_activity_fetcher.h", |
15 "gaia_cookie_manager_service.cc", | 17 "gaia_cookie_manager_service.cc", |
16 "gaia_cookie_manager_service.h", | 18 "gaia_cookie_manager_service.h", |
17 "mutable_profile_oauth2_token_service.cc", | 19 "mutable_profile_oauth2_token_service.cc", |
18 "mutable_profile_oauth2_token_service.h", | 20 "mutable_profile_oauth2_token_service.h", |
19 "profile_oauth2_token_service.cc", | 21 "profile_oauth2_token_service.cc", |
20 "profile_oauth2_token_service.h", | 22 "profile_oauth2_token_service.h", |
21 "refresh_token_annotation_request.cc", | 23 "refresh_token_annotation_request.cc", |
22 "refresh_token_annotation_request.h", | 24 "refresh_token_annotation_request.h", |
23 "signin_client.h", | 25 "signin_client.h", |
24 "signin_error_controller.cc", | 26 "signin_error_controller.cc", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "fake_auth_status_provider.h", | 80 "fake_auth_status_provider.h", |
79 "test_signin_client.cc", | 81 "test_signin_client.cc", |
80 "test_signin_client.h", | 82 "test_signin_client.h", |
81 ] | 83 ] |
82 | 84 |
83 deps = [ | 85 deps = [ |
84 ":browser", | 86 ":browser", |
85 "//testing/gtest", | 87 "//testing/gtest", |
86 ] | 88 ] |
87 } | 89 } |
OLD | NEW |