| 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("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "//components/renderer_context_menu", | 150 "//components/renderer_context_menu", |
| 151 "//components/search", | 151 "//components/search", |
| 152 "//components/search_engines", | 152 "//components/search_engines", |
| 153 "//components/search_provider_logos", | 153 "//components/search_provider_logos", |
| 154 "//components/security_interstitials/core", | 154 "//components/security_interstitials/core", |
| 155 "//components/security_state", | 155 "//components/security_state", |
| 156 "//components/signin/core/browser", | 156 "//components/signin/core/browser", |
| 157 "//components/ssl_errors", | 157 "//components/ssl_errors", |
| 158 "//components/startup_metric_utils/browser:host", | 158 "//components/startup_metric_utils/browser:host", |
| 159 "//components/startup_metric_utils/browser:lib", | 159 "//components/startup_metric_utils/browser:lib", |
| 160 | |
| 161 # TODO(fdoray): Remove this once the PreRead field trial has expired. | |
| 162 # crbug.com/577698 | |
| 163 "//components/startup_metric_utils/common", | |
| 164 "//components/strings", | 160 "//components/strings", |
| 165 "//components/subresource_filter/core/browser", | 161 "//components/subresource_filter/core/browser", |
| 166 "//components/suggestions", | 162 "//components/suggestions", |
| 167 "//components/supervised_user_error_page", | 163 "//components/supervised_user_error_page", |
| 168 "//components/sync", | 164 "//components/sync", |
| 169 "//components/sync_bookmarks", | 165 "//components/sync_bookmarks", |
| 170 "//components/sync_sessions", | 166 "//components/sync_sessions", |
| 171 "//components/tracing:startup_tracing", | 167 "//components/tracing:startup_tracing", |
| 172 "//components/translate/core/browser", | 168 "//components/translate/core/browser", |
| 173 "//components/translate/core/common", | 169 "//components/translate/core/common", |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 ":chrome_process_finder", | 811 ":chrome_process_finder", |
| 816 "//chrome:file_pre_reader", | 812 "//chrome:file_pre_reader", |
| 817 "//chrome/chrome_watcher:client", | 813 "//chrome/chrome_watcher:client", |
| 818 "//chrome/common:metrics_constants_util_win", | 814 "//chrome/common:metrics_constants_util_win", |
| 819 "//chrome/common:version_header", | 815 "//chrome/common:version_header", |
| 820 "//chrome_elf:blacklist", | 816 "//chrome_elf:blacklist", |
| 821 "//chrome_elf:constants", | 817 "//chrome_elf:constants", |
| 822 "//chrome_elf:dll_hash", | 818 "//chrome_elf:dll_hash", |
| 823 "//components/browser_watcher", | 819 "//components/browser_watcher", |
| 824 "//components/browser_watcher:browser_watcher_client", | 820 "//components/browser_watcher:browser_watcher_client", |
| 825 "//components/startup_metric_utils/common", | |
| 826 "//google_update", | 821 "//google_update", |
| 827 "//third_party/iaccessible2", | 822 "//third_party/iaccessible2", |
| 828 "//third_party/isimpledom", | 823 "//third_party/isimpledom", |
| 829 "//third_party/wtl", | 824 "//third_party/wtl", |
| 830 ] | 825 ] |
| 831 | 826 |
| 832 all_dependent_configs = [ ":browser_win_linker_flags" ] | 827 all_dependent_configs = [ ":browser_win_linker_flags" ] |
| 833 | 828 |
| 834 if (!is_chrome_branded) { | 829 if (!is_chrome_branded) { |
| 835 deps -= [ "//google_update" ] | 830 deps -= [ "//google_update" ] |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 # linking all of the test support. | 1355 # linking all of the test support. |
| 1361 static_library("pepper_cdm_test_constants") { | 1356 static_library("pepper_cdm_test_constants") { |
| 1362 testonly = true | 1357 testonly = true |
| 1363 visibility = [ "//chrome/*" ] | 1358 visibility = [ "//chrome/*" ] |
| 1364 sources = [ | 1359 sources = [ |
| 1365 "media/pepper_cdm_test_constants.cc", | 1360 "media/pepper_cdm_test_constants.cc", |
| 1366 "media/pepper_cdm_test_constants.h", | 1361 "media/pepper_cdm_test_constants.h", |
| 1367 ] | 1362 ] |
| 1368 } | 1363 } |
| 1369 } | 1364 } |
| OLD | NEW |