| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("browser") { | 9 static_library("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "account_tracker_service.cc", | 25 "account_tracker_service.cc", |
| 26 "account_tracker_service.h", | 26 "account_tracker_service.h", |
| 27 "android/component_jni_registrar.cc", | 27 "android/component_jni_registrar.cc", |
| 28 "android/component_jni_registrar.h", | 28 "android/component_jni_registrar.h", |
| 29 "child_account_info_fetcher.cc", | 29 "child_account_info_fetcher.cc", |
| 30 "child_account_info_fetcher.h", | 30 "child_account_info_fetcher.h", |
| 31 "child_account_info_fetcher_android.cc", | 31 "child_account_info_fetcher_android.cc", |
| 32 "child_account_info_fetcher_android.h", | 32 "child_account_info_fetcher_android.h", |
| 33 "child_account_info_fetcher_impl.cc", | 33 "child_account_info_fetcher_impl.cc", |
| 34 "child_account_info_fetcher_impl.h", | 34 "child_account_info_fetcher_impl.h", |
| 35 "chrome_connected_header_helper.cc", |
| 36 "chrome_connected_header_helper.h", |
| 37 "dice_header_helper.cc", |
| 38 "dice_header_helper.h", |
| 35 "gaia_cookie_manager_service.cc", | 39 "gaia_cookie_manager_service.cc", |
| 36 "gaia_cookie_manager_service.h", | 40 "gaia_cookie_manager_service.h", |
| 37 "profile_identity_provider.cc", | 41 "profile_identity_provider.cc", |
| 38 "profile_identity_provider.h", | 42 "profile_identity_provider.h", |
| 39 "profile_oauth2_token_service.cc", | 43 "profile_oauth2_token_service.cc", |
| 40 "profile_oauth2_token_service.h", | 44 "profile_oauth2_token_service.h", |
| 41 "refresh_token_annotation_request.cc", | 45 "refresh_token_annotation_request.cc", |
| 42 "refresh_token_annotation_request.h", | 46 "refresh_token_annotation_request.h", |
| 43 "signin_client.cc", | 47 "signin_client.cc", |
| 44 "signin_client.h", | 48 "signin_client.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ] | 104 ] |
| 101 | 105 |
| 102 if (is_chromeos) { | 106 if (is_chromeos) { |
| 103 sources -= [ | 107 sources -= [ |
| 104 "signin_manager.cc", | 108 "signin_manager.cc", |
| 105 "signin_status_metrics_provider.cc", | 109 "signin_status_metrics_provider.cc", |
| 106 "signin_status_metrics_provider_delegate.cc", | 110 "signin_status_metrics_provider_delegate.cc", |
| 107 ] | 111 ] |
| 108 } | 112 } |
| 109 | 113 |
| 114 if (is_android || is_ios) { |
| 115 sources -= [ |
| 116 "dice_header_helper.cc", |
| 117 "dice_header_helper.h", |
| 118 ] |
| 119 } |
| 120 |
| 110 if (is_android) { | 121 if (is_android) { |
| 111 sources -= [ | 122 sources -= [ |
| 112 "child_account_info_fetcher_impl.cc", | 123 "child_account_info_fetcher_impl.cc", |
| 113 "child_account_info_fetcher_impl.h", | 124 "child_account_info_fetcher_impl.h", |
| 114 ] | 125 ] |
| 115 deps += [ "android:jni_headers" ] | 126 deps += [ "android:jni_headers" ] |
| 116 } | 127 } |
| 117 } | 128 } |
| 118 | 129 |
| 119 static_library("test_support") { | 130 static_library("test_support") { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 } | 190 } |
| 180 } | 191 } |
| 181 | 192 |
| 182 if (is_android) { | 193 if (is_android) { |
| 183 java_cpp_enum("investigated_scenario_java") { | 194 java_cpp_enum("investigated_scenario_java") { |
| 184 sources = [ | 195 sources = [ |
| 185 "signin_investigator.h", | 196 "signin_investigator.h", |
| 186 ] | 197 ] |
| 187 } | 198 } |
| 188 } | 199 } |
| OLD | NEW |