| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 "signin/fake_account_fetcher_service_builder.cc", | 1104 "signin/fake_account_fetcher_service_builder.cc", |
| 1105 "signin/fake_account_fetcher_service_builder.h", | 1105 "signin/fake_account_fetcher_service_builder.h", |
| 1106 "signin/fake_gaia_cookie_manager_service.cc", | 1106 "signin/fake_gaia_cookie_manager_service.cc", |
| 1107 "signin/fake_gaia_cookie_manager_service.h", | 1107 "signin/fake_gaia_cookie_manager_service.h", |
| 1108 "signin/fake_profile_oauth2_token_service_builder.cc", | 1108 "signin/fake_profile_oauth2_token_service_builder.cc", |
| 1109 "signin/fake_profile_oauth2_token_service_builder.h", | 1109 "signin/fake_profile_oauth2_token_service_builder.h", |
| 1110 "signin/fake_signin_manager_builder.cc", | 1110 "signin/fake_signin_manager_builder.cc", |
| 1111 "signin/fake_signin_manager_builder.h", | 1111 "signin/fake_signin_manager_builder.h", |
| 1112 "ssl/ssl_client_auth_requestor_mock.cc", | 1112 "ssl/ssl_client_auth_requestor_mock.cc", |
| 1113 "ssl/ssl_client_auth_requestor_mock.h", | 1113 "ssl/ssl_client_auth_requestor_mock.h", |
| 1114 "sync/profile_sync_service_mock.cc", | |
| 1115 "sync/profile_sync_service_mock.h", | |
| 1116 "sync/profile_sync_test_util.cc", | 1114 "sync/profile_sync_test_util.cc", |
| 1117 "sync/profile_sync_test_util.h", | 1115 "sync/profile_sync_test_util.h", |
| 1118 ] | 1116 ] |
| 1119 | 1117 |
| 1120 configs += [ "//build/config:precompiled_headers" ] | 1118 configs += [ "//build/config:precompiled_headers" ] |
| 1121 | 1119 |
| 1122 public_deps = [ | 1120 public_deps = [ |
| 1123 ":browser", | 1121 ":browser", |
| 1124 "//chrome/browser/ui:test_support", | 1122 "//chrome/browser/ui:test_support", |
| 1125 ] | 1123 ] |
| 1126 deps = [ | 1124 deps = [ |
| 1127 "//base:prefs_test_support", | 1125 "//base:prefs_test_support", |
| 1128 "//chrome/app/theme:theme_resources", | 1126 "//chrome/app/theme:theme_resources", |
| 1129 "//chrome/browser", | 1127 "//chrome/browser", |
| 1130 "//chrome/common", | 1128 "//chrome/common", |
| 1131 "//chrome/common/safe_browsing:proto", | 1129 "//chrome/common/safe_browsing:proto", |
| 1130 "//components/browser_sync/browser:test_support", |
| 1132 "//components/invalidation/impl", | 1131 "//components/invalidation/impl", |
| 1133 "//components/invalidation/impl:test_support", | 1132 "//components/invalidation/impl:test_support", |
| 1134 "//components/password_manager/core/browser:test_support", | 1133 "//components/password_manager/core/browser:test_support", |
| 1135 "//components/search_engines:test_support", | 1134 "//components/search_engines:test_support", |
| 1136 "//components/syncable_prefs:test_support", | 1135 "//components/syncable_prefs:test_support", |
| 1137 "//components/user_prefs/tracked:user_prefs_tracked_test_support", | 1136 "//components/user_prefs/tracked:user_prefs_tracked_test_support", |
| 1138 "//content/test:test_support", | 1137 "//content/test:test_support", |
| 1139 "//net:test_support", | 1138 "//net:test_support", |
| 1140 "//skia", | 1139 "//skia", |
| 1141 "//testing/gmock", | 1140 "//testing/gmock", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1319 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1321 deps = [ | 1320 deps = [ |
| 1322 "//components/google/core/browser", | 1321 "//components/google/core/browser", |
| 1323 "//components/omnibox/browser", | 1322 "//components/omnibox/browser", |
| 1324 "//components/rlz", | 1323 "//components/rlz", |
| 1325 "//components/search_engines", | 1324 "//components/search_engines", |
| 1326 "//rlz:rlz_lib", | 1325 "//rlz:rlz_lib", |
| 1327 ] | 1326 ] |
| 1328 } | 1327 } |
| 1329 } | 1328 } |
| OLD | NEW |