| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 public_deps = [ | 77 public_deps = [ |
| 78 "//components/signin/core/account_id", | 78 "//components/signin/core/account_id", |
| 79 "//components/signin/core/common", | 79 "//components/signin/core/common", |
| 80 ] | 80 ] |
| 81 deps = [ | 81 deps = [ |
| 82 "//base", | 82 "//base", |
| 83 "//base:i18n", | 83 "//base:i18n", |
| 84 "//components/content_settings/core/browser", | 84 "//components/content_settings/core/browser", |
| 85 "//components/content_settings/core/common", | 85 "//components/content_settings/core/common", |
| 86 "//components/data_use_measurement/core", |
| 86 "//components/google/core/browser", | 87 "//components/google/core/browser", |
| 87 "//components/invalidation/public", | 88 "//components/invalidation/public", |
| 88 "//components/keyed_service/core", | 89 "//components/keyed_service/core", |
| 89 "//components/metrics", | 90 "//components/metrics", |
| 90 "//components/os_crypt", | 91 "//components/os_crypt", |
| 91 "//components/pref_registry", | 92 "//components/pref_registry", |
| 92 "//components/prefs", | 93 "//components/prefs", |
| 93 "//components/webdata/common", | 94 "//components/webdata/common", |
| 94 "//crypto", | 95 "//crypto", |
| 95 "//google_apis", | 96 "//google_apis", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 } | 177 } |
| 177 } | 178 } |
| 178 | 179 |
| 179 if (is_android) { | 180 if (is_android) { |
| 180 java_cpp_enum("investigated_scenario_java") { | 181 java_cpp_enum("investigated_scenario_java") { |
| 181 sources = [ | 182 sources = [ |
| 182 "signin_investigator.h", | 183 "signin_investigator.h", |
| 183 ] | 184 ] |
| 184 } | 185 } |
| 185 } | 186 } |
| OLD | NEW |