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

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

Issue 2033093003: [Notification] Make HTML5 Notification use ActionCenter on Windows 10, behind Flags. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync and merge. Created 3 years, 7 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 | « chrome/app/chrome_exe_main_win.cc ('k') | chrome/browser/about_flags.cc » ('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 26 matching lines...) Expand all
37 # This is in a separate config so the flags can be applied to dependents. 37 # This is in a separate config so the flags can be applied to dependents.
38 # ldflags in GN aren't automatically inherited. 38 # ldflags in GN aren't automatically inherited.
39 config("browser_win_linker_flags") { 39 config("browser_win_linker_flags") {
40 libs = [ 40 libs = [
41 "credui.lib", 41 "credui.lib",
42 "cryptui.lib", 42 "cryptui.lib",
43 "dwmapi.lib", 43 "dwmapi.lib",
44 "netapi32.lib", 44 "netapi32.lib",
45 "ndfapi.lib", # Used by browser/net/net_error_diagnostics_dialog_win.h 45 "ndfapi.lib", # Used by browser/net/net_error_diagnostics_dialog_win.h
46 "pdh.lib", # Used by browser/private_working_set_snapshot.h 46 "pdh.lib", # Used by browser/private_working_set_snapshot.h
47 "runtimeobject.lib", # Used by browser/notifications
47 ] 48 ]
48 ldflags = [ 49 ldflags = [
49 "/DELAYLOAD:ndfapi.dll", 50 "/DELAYLOAD:ndfapi.dll",
50 "/DELAYLOAD:pdh.dll", # The task manager is rarely used. 51 "/DELAYLOAD:pdh.dll", # The task manager is rarely used.
51 ] 52 ]
52 } 53 }
53 } 54 }
54 55
55 # Use a static library here because many test binaries depend on this but don't 56 # Use a static library here because many test binaries depend on this but don't
56 # require many files from it. This makes linking more efficient. 57 # require many files from it. This makes linking more efficient.
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 "notifications/notification_display_service_factory.cc", 755 "notifications/notification_display_service_factory.cc",
755 "notifications/notification_display_service_factory.h", 756 "notifications/notification_display_service_factory.h",
756 "notifications/notification_handler.h", 757 "notifications/notification_handler.h",
757 "notifications/notification_object_proxy.cc", 758 "notifications/notification_object_proxy.cc",
758 "notifications/notification_object_proxy.h", 759 "notifications/notification_object_proxy.h",
759 "notifications/notification_permission_context.cc", 760 "notifications/notification_permission_context.cc",
760 "notifications/notification_permission_context.h", 761 "notifications/notification_permission_context.h",
761 "notifications/notification_platform_bridge.h", 762 "notifications/notification_platform_bridge.h",
762 "notifications/notification_platform_bridge_mac.h", 763 "notifications/notification_platform_bridge_mac.h",
763 "notifications/notification_platform_bridge_mac.mm", 764 "notifications/notification_platform_bridge_mac.mm",
765 "notifications/notification_platform_bridge_win.cc",
766 "notifications/notification_platform_bridge_win.h",
767 "notifications/notification_toast_helper_win.cc",
768 "notifications/notification_toast_helper_win.h",
764 "notifications/notification_ui_manager.h", 769 "notifications/notification_ui_manager.h",
765 "notifications/notifier_state_tracker.cc", 770 "notifications/notifier_state_tracker.cc",
766 "notifications/notifier_state_tracker.h", 771 "notifications/notifier_state_tracker.h",
767 "notifications/notifier_state_tracker_factory.cc", 772 "notifications/notifier_state_tracker_factory.cc",
768 "notifications/notifier_state_tracker_factory.h", 773 "notifications/notifier_state_tracker_factory.h",
769 "notifications/persistent_notification_delegate.cc", 774 "notifications/persistent_notification_delegate.cc",
770 "notifications/persistent_notification_delegate.h", 775 "notifications/persistent_notification_delegate.h",
771 "notifications/persistent_notification_handler.cc", 776 "notifications/persistent_notification_handler.cc",
772 "notifications/persistent_notification_handler.h", 777 "notifications/persistent_notification_handler.h",
773 "notifications/platform_notification_service_impl.cc", 778 "notifications/platform_notification_service_impl.cc",
(...skipping 3927 matching lines...) Expand 10 before | Expand all | Expand 10 after
4701 "media/pepper_cdm_test_constants.cc", 4706 "media/pepper_cdm_test_constants.cc",
4702 "media/pepper_cdm_test_constants.h", 4707 "media/pepper_cdm_test_constants.h",
4703 ] 4708 ]
4704 } 4709 }
4705 } 4710 }
4706 4711
4707 service_manifest("preferences_forwarder_manifest") { 4712 service_manifest("preferences_forwarder_manifest") {
4708 name = "preferences_forwarder" 4713 name = "preferences_forwarder"
4709 source = "prefs/forwarder_manifest.json" 4714 source = "prefs/forwarder_manifest.json"
4710 } 4715 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_exe_main_win.cc ('k') | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698