| 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 "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 23 matching lines...) Expand all Loading... |
| 52 "//net", | 50 "//net", |
| 53 "//sql", | 51 "//sql", |
| 54 "//third_party/icu", | 52 "//third_party/icu", |
| 55 "//components/content_settings/core/browser", | 53 "//components/content_settings/core/browser", |
| 56 "//components/content_settings/core/common", | 54 "//components/content_settings/core/common", |
| 57 "//components/keyed_service/core", | 55 "//components/keyed_service/core", |
| 58 "//components/os_crypt", | 56 "//components/os_crypt", |
| 59 "//components/webdata/common", | 57 "//components/webdata/common", |
| 60 ] | 58 ] |
| 61 | 59 |
| 62 if (is_android) { | |
| 63 sources -= [ | |
| 64 "mutable_profile_oauth2_token_service.cc", | |
| 65 "mutable_profile_oauth2_token_service.h", | |
| 66 ] | |
| 67 } | |
| 68 | |
| 69 if (is_chromeos) { | 60 if (is_chromeos) { |
| 70 sources -= [ "signin_manager.cc" ] | 61 sources -= [ "signin_manager.cc" ] |
| 71 } | 62 } |
| 72 } | 63 } |
| 73 | 64 |
| 74 static_library("test_support") { | 65 static_library("test_support") { |
| 75 testonly = true | 66 testonly = true |
| 76 sources = [ | 67 sources = [ |
| 77 "fake_auth_status_provider.cc", | 68 "fake_auth_status_provider.cc", |
| 78 "fake_auth_status_provider.h", | 69 "fake_auth_status_provider.h", |
| 79 "test_signin_client.cc", | 70 "test_signin_client.cc", |
| 80 "test_signin_client.h", | 71 "test_signin_client.h", |
| 81 ] | 72 ] |
| 82 | 73 |
| 83 deps = [ | 74 deps = [ |
| 84 ":browser", | 75 ":browser", |
| 85 "//testing/gtest", | 76 "//testing/gtest", |
| 86 ] | 77 ] |
| 87 } | 78 } |
| OLD | NEW |