| 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 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "webdata/token_service_table.h", | 68 "webdata/token_service_table.h", |
| 69 "webdata/token_web_data.cc", | 69 "webdata/token_web_data.cc", |
| 70 "webdata/token_web_data.h", | 70 "webdata/token_web_data.h", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 73 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 74 | 74 |
| 75 deps = [ | 75 deps = [ |
| 76 "//base", | 76 "//base", |
| 77 "//base:i18n", | 77 "//base:i18n", |
| 78 "//base:prefs", | |
| 79 "//components/content_settings/core/browser", | 78 "//components/content_settings/core/browser", |
| 80 "//components/content_settings/core/common", | 79 "//components/content_settings/core/common", |
| 81 "//components/google/core/browser", | 80 "//components/google/core/browser", |
| 82 "//components/invalidation/public", | 81 "//components/invalidation/public", |
| 83 "//components/keyed_service/core", | 82 "//components/keyed_service/core", |
| 84 "//components/metrics", | 83 "//components/metrics", |
| 85 "//components/os_crypt", | 84 "//components/os_crypt", |
| 86 "//components/pref_registry", | 85 "//components/pref_registry", |
| 86 "//components/prefs", |
| 87 "//components/signin/core/account_id", | 87 "//components/signin/core/account_id", |
| 88 "//components/signin/core/common", | 88 "//components/signin/core/common", |
| 89 "//components/webdata/common", | 89 "//components/webdata/common", |
| 90 "//crypto", | 90 "//crypto", |
| 91 "//google_apis", | 91 "//google_apis", |
| 92 "//net", | 92 "//net", |
| 93 "//sql", | 93 "//sql", |
| 94 "//third_party/icu", | 94 "//third_party/icu", |
| 95 ] | 95 ] |
| 96 | 96 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 122 "fake_profile_oauth2_token_service.h", | 122 "fake_profile_oauth2_token_service.h", |
| 123 "fake_signin_manager.cc", | 123 "fake_signin_manager.cc", |
| 124 "fake_signin_manager.h", | 124 "fake_signin_manager.h", |
| 125 "test_signin_client.cc", | 125 "test_signin_client.cc", |
| 126 "test_signin_client.h", | 126 "test_signin_client.h", |
| 127 ] | 127 ] |
| 128 | 128 |
| 129 public_deps = [ | 129 public_deps = [ |
| 130 ":browser", | 130 ":browser", |
| 131 "//base", | 131 "//base", |
| 132 "//base:prefs_test_support", | 132 "//components/prefs:test_support", |
| 133 "//components/webdata/common", | 133 "//components/webdata/common", |
| 134 "//google_apis:test_support", | 134 "//google_apis:test_support", |
| 135 "//net:test_support", | 135 "//net:test_support", |
| 136 "//testing/gtest", | 136 "//testing/gtest", |
| 137 ] | 137 ] |
| 138 } | 138 } |
| 139 | 139 |
| 140 source_set("unit_tests") { | 140 source_set("unit_tests") { |
| 141 testonly = true | 141 testonly = true |
| 142 sources = [ | 142 sources = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 163 } | 163 } |
| 164 | 164 |
| 165 if (is_android) { | 165 if (is_android) { |
| 166 # GYP: //component/signin.gypi:investigated_scenario_java | 166 # GYP: //component/signin.gypi:investigated_scenario_java |
| 167 java_cpp_enum("investigated_scenario_java") { | 167 java_cpp_enum("investigated_scenario_java") { |
| 168 sources = [ | 168 sources = [ |
| 169 "signin_investigator.h", | 169 "signin_investigator.h", |
| 170 ] | 170 ] |
| 171 } | 171 } |
| 172 } | 172 } |
| OLD | NEW |