| 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_fetcher_service.cc", | 9 "account_fetcher_service.cc", |
| 10 "account_fetcher_service.h", | 10 "account_fetcher_service.h", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "//third_party/icu", | 69 "//third_party/icu", |
| 70 "//components/content_settings/core/browser", | 70 "//components/content_settings/core/browser", |
| 71 "//components/content_settings/core/common", | 71 "//components/content_settings/core/common", |
| 72 "//components/google/core/browser", | 72 "//components/google/core/browser", |
| 73 "//components/invalidation/public", | 73 "//components/invalidation/public", |
| 74 "//components/keyed_service/core", | 74 "//components/keyed_service/core", |
| 75 "//components/os_crypt", | 75 "//components/os_crypt", |
| 76 "//components/webdata/common", | 76 "//components/webdata/common", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 if (is_chromeos) { | 79 if (is_chromeos_ui) { |
| 80 sources -= [ "signin_manager.cc" ] | 80 sources -= [ "signin_manager.cc" ] |
| 81 } | 81 } |
| 82 | 82 |
| 83 if (is_android) { | 83 if (is_android) { |
| 84 sources -= [ | 84 sources -= [ |
| 85 "child_account_info_fetcher_impl.cc", | 85 "child_account_info_fetcher_impl.cc", |
| 86 "child_account_info_fetcher_impl.h", | 86 "child_account_info_fetcher_impl.h", |
| 87 ] | 87 ] |
| 88 deps += [ "android:jni_headers" ] | 88 deps += [ "android:jni_headers" ] |
| 89 } | 89 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 102 "fake_signin_manager.h", | 102 "fake_signin_manager.h", |
| 103 "test_signin_client.cc", | 103 "test_signin_client.cc", |
| 104 "test_signin_client.h", | 104 "test_signin_client.h", |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 deps = [ | 107 deps = [ |
| 108 ":browser", | 108 ":browser", |
| 109 "//testing/gtest", | 109 "//testing/gtest", |
| 110 ] | 110 ] |
| 111 } | 111 } |
| OLD | NEW |