Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2655653004: Fixes gn-check errors with enable_plugins=false. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 3046 matching lines...) Expand 10 before | Expand all | Expand 10 after
3057 "bookmarks/bookmark_html_writer.h", 3057 "bookmarks/bookmark_html_writer.h",
3058 "certificate_viewer.h", 3058 "certificate_viewer.h",
3059 "chooser_controller/chooser_controller.cc", 3059 "chooser_controller/chooser_controller.cc",
3060 "chooser_controller/chooser_controller.h", 3060 "chooser_controller/chooser_controller.h",
3061 "chrome_browser_field_trials_desktop.cc", 3061 "chrome_browser_field_trials_desktop.cc",
3062 "chrome_browser_field_trials_desktop.h", 3062 "chrome_browser_field_trials_desktop.h",
3063 "chrome_browser_main_posix.cc", 3063 "chrome_browser_main_posix.cc",
3064 "chrome_browser_main_posix.h", 3064 "chrome_browser_main_posix.h",
3065 "chrome_process_singleton.cc", 3065 "chrome_process_singleton.cc",
3066 "chrome_process_singleton.h", 3066 "chrome_process_singleton.h",
3067 "component_updater/widevine_cdm_component_installer.cc",
3068 "component_updater/widevine_cdm_component_installer.h",
3069 "custom_handlers/register_protocol_handler_permission_request.cc", 3067 "custom_handlers/register_protocol_handler_permission_request.cc",
3070 "custom_handlers/register_protocol_handler_permission_request.h", 3068 "custom_handlers/register_protocol_handler_permission_request.h",
3071 "custom_home_pages_table_model.cc", 3069 "custom_home_pages_table_model.cc",
3072 "custom_home_pages_table_model.h", 3070 "custom_home_pages_table_model.h",
3073 "diagnostics/diagnostics_controller.cc", 3071 "diagnostics/diagnostics_controller.cc",
3074 "diagnostics/diagnostics_controller.h", 3072 "diagnostics/diagnostics_controller.h",
3075 "diagnostics/diagnostics_metrics.cc", 3073 "diagnostics/diagnostics_metrics.cc",
3076 "diagnostics/diagnostics_metrics.h", 3074 "diagnostics/diagnostics_metrics.h",
3077 "diagnostics/diagnostics_model.cc", 3075 "diagnostics/diagnostics_model.cc",
3078 "diagnostics/diagnostics_model.h", 3076 "diagnostics/diagnostics_model.h",
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
3448 "//chrome/browser/policy:path_parser", 3446 "//chrome/browser/policy:path_parser",
3449 "//chrome/browser/profile_resetter:profile_reset_report_proto", 3447 "//chrome/browser/profile_resetter:profile_reset_report_proto",
3450 "//chrome/common/importer:interfaces", 3448 "//chrome/common/importer:interfaces",
3451 "//components/feedback", 3449 "//components/feedback",
3452 "//components/web_modal", 3450 "//components/web_modal",
3453 "//device/battery", 3451 "//device/battery",
3454 "//net:net_browser_services", 3452 "//net:net_browser_services",
3455 ] 3453 ]
3456 } 3454 }
3457 3455
3456 if (enable_pepper_cdms) {
3457 sources += [
3458 "component_updater/widevine_cdm_component_installer.cc",
3459 "component_updater/widevine_cdm_component_installer.h",
3460 ]
3461 }
3462
3458 if (!is_chrome_branded) { 3463 if (!is_chrome_branded) {
3459 sources += [ 3464 sources += [
3460 "search/local_files_ntp_source.cc", 3465 "search/local_files_ntp_source.cc",
3461 "search/local_files_ntp_source.h", 3466 "search/local_files_ntp_source.h",
3462 ] 3467 ]
3463 } 3468 }
3464 3469
3465 if (enable_vr_shell || enable_webvr) { 3470 if (enable_vr_shell || enable_webvr) {
3466 if (enable_vr_shell) { 3471 if (enable_vr_shell) {
3467 defines += [ "ENABLE_VR_SHELL" ] 3472 defines += [ "ENABLE_VR_SHELL" ]
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
4487 "media/pepper_cdm_test_constants.cc", 4492 "media/pepper_cdm_test_constants.cc",
4488 "media/pepper_cdm_test_constants.h", 4493 "media/pepper_cdm_test_constants.h",
4489 ] 4494 ]
4490 } 4495 }
4491 } 4496 }
4492 4497
4493 service_manifest("preferences_manifest") { 4498 service_manifest("preferences_manifest") {
4494 name = "preferences" 4499 name = "preferences"
4495 source = "prefs/preferences_manifest.json" 4500 source = "prefs/preferences_manifest.json"
4496 } 4501 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698