| 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 source_set("browser") { | 5 source_set("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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "webdata/token_service_table.cc", | 61 "webdata/token_service_table.cc", |
| 62 "webdata/token_service_table.h", | 62 "webdata/token_service_table.h", |
| 63 "webdata/token_web_data.cc", | 63 "webdata/token_web_data.cc", |
| 64 "webdata/token_web_data.h", | 64 "webdata/token_web_data.h", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 "//base", | 70 "//base", |
| 71 "//crypto", | |
| 72 "//google_apis", | |
| 73 "//net", | |
| 74 "//sql", | |
| 75 "//third_party/icu", | |
| 76 "//components/signin/core/common", | |
| 77 "//components/content_settings/core/browser", | 71 "//components/content_settings/core/browser", |
| 78 "//components/content_settings/core/common", | 72 "//components/content_settings/core/common", |
| 79 "//components/google/core/browser", | 73 "//components/google/core/browser", |
| 80 "//components/invalidation/public", | 74 "//components/invalidation/public", |
| 81 "//components/keyed_service/core", | 75 "//components/keyed_service/core", |
| 82 "//components/metrics", | 76 "//components/metrics", |
| 83 "//components/os_crypt", | 77 "//components/os_crypt", |
| 78 "//components/signin/core/account_id", |
| 79 "//components/signin/core/common", |
| 84 "//components/webdata/common", | 80 "//components/webdata/common", |
| 85 "//components/signin/core/account_id", | 81 "//crypto", |
| 82 "//google_apis", |
| 83 "//net", |
| 84 "//sql", |
| 85 "//third_party/icu", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 if (is_chromeos) { | 88 if (is_chromeos) { |
| 89 sources -= [ | 89 sources -= [ |
| 90 "signin_manager.cc", | 90 "signin_manager.cc", |
| 91 "signin_status_metrics_provider.cc", | 91 "signin_status_metrics_provider.cc", |
| 92 "signin_status_metrics_provider_delegate.cc", | 92 "signin_status_metrics_provider_delegate.cc", |
| 93 ] | 93 ] |
| 94 } | 94 } |
| 95 | 95 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 deps = [ | 137 deps = [ |
| 138 ":test_support", | 138 ":test_support", |
| 139 "//testing/gmock", | 139 "//testing/gmock", |
| 140 ] | 140 ] |
| 141 | 141 |
| 142 if (is_chromeos) { | 142 if (is_chromeos) { |
| 143 sources -= [ "signin_status_metrics_provider_unittest.cc" ] | 143 sources -= [ "signin_status_metrics_provider_unittest.cc" ] |
| 144 } | 144 } |
| 145 } | 145 } |
| OLD | NEW |