| 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 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 "//components/search_engines", | 1327 "//components/search_engines", |
| 1328 "//components/search_provider_logos", | 1328 "//components/search_provider_logos", |
| 1329 "//components/security_interstitials/core", | 1329 "//components/security_interstitials/core", |
| 1330 "//components/security_state", | 1330 "//components/security_state", |
| 1331 "//components/sessions", | 1331 "//components/sessions", |
| 1332 "//components/signin/core/browser", | 1332 "//components/signin/core/browser", |
| 1333 "//components/ssl_config", | 1333 "//components/ssl_config", |
| 1334 "//components/ssl_errors", | 1334 "//components/ssl_errors", |
| 1335 "//components/startup_metric_utils/browser:host", | 1335 "//components/startup_metric_utils/browser:host", |
| 1336 "//components/startup_metric_utils/browser:lib", | 1336 "//components/startup_metric_utils/browser:lib", |
| 1337 | |
| 1338 # TODO(fdoray): Remove this once the PreRead field trial has expired. | |
| 1339 # crbug.com/577698 | |
| 1340 "//components/startup_metric_utils/common", | |
| 1341 "//components/storage_monitor", | 1337 "//components/storage_monitor", |
| 1342 "//components/strings", | 1338 "//components/strings", |
| 1343 "//components/subresource_filter/content/browser", | 1339 "//components/subresource_filter/content/browser", |
| 1344 "//components/subresource_filter/core/browser", | 1340 "//components/subresource_filter/core/browser", |
| 1345 "//components/suggestions", | 1341 "//components/suggestions", |
| 1346 "//components/supervised_user_error_page", | 1342 "//components/supervised_user_error_page", |
| 1347 "//components/sync", | 1343 "//components/sync", |
| 1348 "//components/sync_bookmarks", | 1344 "//components/sync_bookmarks", |
| 1349 "//components/sync_sessions", | 1345 "//components/sync_sessions", |
| 1350 "//components/syncable_prefs", | 1346 "//components/syncable_prefs", |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1884 ":chrome_process_finder", | 1880 ":chrome_process_finder", |
| 1885 "//chrome:file_pre_reader", | 1881 "//chrome:file_pre_reader", |
| 1886 "//chrome/chrome_watcher:client", | 1882 "//chrome/chrome_watcher:client", |
| 1887 "//chrome/common:metrics_constants_util_win", | 1883 "//chrome/common:metrics_constants_util_win", |
| 1888 "//chrome/common:version_header", | 1884 "//chrome/common:version_header", |
| 1889 "//chrome_elf:blacklist", | 1885 "//chrome_elf:blacklist", |
| 1890 "//chrome_elf:constants", | 1886 "//chrome_elf:constants", |
| 1891 "//chrome_elf:dll_hash", | 1887 "//chrome_elf:dll_hash", |
| 1892 "//components/browser_watcher", | 1888 "//components/browser_watcher", |
| 1893 "//components/browser_watcher:browser_watcher_client", | 1889 "//components/browser_watcher:browser_watcher_client", |
| 1894 "//components/startup_metric_utils/common", | |
| 1895 "//google_update", | 1890 "//google_update", |
| 1896 "//third_party/iaccessible2", | 1891 "//third_party/iaccessible2", |
| 1897 "//third_party/isimpledom", | 1892 "//third_party/isimpledom", |
| 1898 "//third_party/wtl", | 1893 "//third_party/wtl", |
| 1899 ] | 1894 ] |
| 1900 | 1895 |
| 1901 all_dependent_configs = [ ":browser_win_linker_flags" ] | 1896 all_dependent_configs = [ ":browser_win_linker_flags" ] |
| 1902 | 1897 |
| 1903 if (!is_chrome_branded) { | 1898 if (!is_chrome_branded) { |
| 1904 deps -= [ "//google_update" ] | 1899 deps -= [ "//google_update" ] |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2406 # linking all of the test support. | 2401 # linking all of the test support. |
| 2407 static_library("pepper_cdm_test_constants") { | 2402 static_library("pepper_cdm_test_constants") { |
| 2408 testonly = true | 2403 testonly = true |
| 2409 visibility = [ "//chrome/*" ] | 2404 visibility = [ "//chrome/*" ] |
| 2410 sources = [ | 2405 sources = [ |
| 2411 "media/pepper_cdm_test_constants.cc", | 2406 "media/pepper_cdm_test_constants.cc", |
| 2412 "media/pepper_cdm_test_constants.h", | 2407 "media/pepper_cdm_test_constants.h", |
| 2413 ] | 2408 ] |
| 2414 } | 2409 } |
| 2415 } | 2410 } |
| OLD | NEW |