| 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_tracker_service.cc", | 11 "account_tracker_service.cc", |
| 12 "account_tracker_service.h", | 12 "account_tracker_service.h", |
| 13 "device_activity_fetcher.cc", | 13 "device_activity_fetcher.cc", |
| 14 "device_activity_fetcher.h", | 14 "device_activity_fetcher.h", |
| 15 "gaia_cookie_manager_service.cc", | 15 "gaia_cookie_manager_service.cc", |
| 16 "gaia_cookie_manager_service.h", | 16 "gaia_cookie_manager_service.h", |
| 17 "mutable_profile_oauth2_token_service.cc", | |
| 18 "mutable_profile_oauth2_token_service.h", | |
| 19 "profile_oauth2_token_service.cc", | 17 "profile_oauth2_token_service.cc", |
| 20 "profile_oauth2_token_service.h", | 18 "profile_oauth2_token_service.h", |
| 21 "refresh_token_annotation_request.cc", | 19 "refresh_token_annotation_request.cc", |
| 22 "refresh_token_annotation_request.h", | 20 "refresh_token_annotation_request.h", |
| 23 "signin_client.h", | 21 "signin_client.h", |
| 24 "signin_error_controller.cc", | 22 "signin_error_controller.cc", |
| 25 "signin_error_controller.h", | 23 "signin_error_controller.h", |
| 26 "signin_internals_util.cc", | 24 "signin_internals_util.cc", |
| 27 "signin_internals_util.h", | 25 "signin_internals_util.h", |
| 28 "signin_manager.cc", | 26 "signin_manager.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 50 "//net", | 48 "//net", |
| 51 "//sql", | 49 "//sql", |
| 52 "//third_party/icu", | 50 "//third_party/icu", |
| 53 "//components/content_settings/core/browser", | 51 "//components/content_settings/core/browser", |
| 54 "//components/content_settings/core/common", | 52 "//components/content_settings/core/common", |
| 55 "//components/keyed_service/core", | 53 "//components/keyed_service/core", |
| 56 "//components/os_crypt", | 54 "//components/os_crypt", |
| 57 "//components/webdata/common", | 55 "//components/webdata/common", |
| 58 ] | 56 ] |
| 59 | 57 |
| 60 if (is_android) { | |
| 61 sources -= [ | |
| 62 "mutable_profile_oauth2_token_service.cc", | |
| 63 "mutable_profile_oauth2_token_service.h", | |
| 64 ] | |
| 65 } | |
| 66 | |
| 67 if (is_chromeos) { | 58 if (is_chromeos) { |
| 68 sources -= [ "signin_manager.cc" ] | 59 sources -= [ "signin_manager.cc" ] |
| 69 } | 60 } |
| 70 } | 61 } |
| 71 | 62 |
| 72 static_library("test_support") { | 63 static_library("test_support") { |
| 73 testonly = true | 64 testonly = true |
| 74 sources = [ | 65 sources = [ |
| 75 "fake_auth_status_provider.cc", | 66 "fake_auth_status_provider.cc", |
| 76 "fake_auth_status_provider.h", | 67 "fake_auth_status_provider.h", |
| 77 "test_signin_client.cc", | 68 "test_signin_client.cc", |
| 78 "test_signin_client.h", | 69 "test_signin_client.h", |
| 79 ] | 70 ] |
| 80 | 71 |
| 81 deps = [ | 72 deps = [ |
| 82 ":browser", | 73 ":browser", |
| 83 "//testing/gtest", | 74 "//testing/gtest", |
| 84 ] | 75 ] |
| 85 } | 76 } |
| OLD | NEW |