| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 63 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 "//base", | 66 "//base", |
| 67 "//crypto", | 67 "//crypto", |
| 68 "//google_apis", | 68 "//google_apis", |
| 69 "//net", | 69 "//net", |
| 70 "//sql", | 70 "//sql", |
| 71 "//third_party/icu", | 71 "//third_party/icu", |
| 72 "//components/signin/core/common", |
| 72 "//components/content_settings/core/browser", | 73 "//components/content_settings/core/browser", |
| 73 "//components/content_settings/core/common", | 74 "//components/content_settings/core/common", |
| 74 "//components/google/core/browser", | 75 "//components/google/core/browser", |
| 75 "//components/invalidation/public", | 76 "//components/invalidation/public", |
| 76 "//components/keyed_service/core", | 77 "//components/keyed_service/core", |
| 77 "//components/os_crypt", | 78 "//components/os_crypt", |
| 78 "//components/webdata/common", | 79 "//components/webdata/common", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 if (is_chromeos) { | 82 if (is_chromeos) { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "refresh_token_annotation_request_unittest.cc", | 121 "refresh_token_annotation_request_unittest.cc", |
| 121 "signin_error_controller_unittest.cc", | 122 "signin_error_controller_unittest.cc", |
| 122 "webdata/token_service_table_unittest.cc", | 123 "webdata/token_service_table_unittest.cc", |
| 123 ] | 124 ] |
| 124 | 125 |
| 125 deps = [ | 126 deps = [ |
| 126 ":test_support", | 127 ":test_support", |
| 127 "//testing/gmock", | 128 "//testing/gmock", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| OLD | NEW |