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

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

Issue 2794103002: Add initial support for native Linux desktop notifications (Closed)
Patch Set: Remove unused import Created 3 years, 8 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/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 3738 matching lines...) Expand 10 before | Expand all | Expand 10 after
3749 # libsecret hard depends on GLib. 3749 # libsecret hard depends on GLib.
3750 if (use_glib) { 3750 if (use_glib) {
3751 sources += [ 3751 sources += [
3752 "password_manager/native_backend_libsecret.cc", 3752 "password_manager/native_backend_libsecret.cc",
3753 "password_manager/native_backend_libsecret.h", 3753 "password_manager/native_backend_libsecret.h",
3754 ] 3754 ]
3755 defines += [ "USE_LIBSECRET" ] 3755 defines += [ "USE_LIBSECRET" ]
3756 deps += [ "//third_party/libsecret" ] 3756 deps += [ "//third_party/libsecret" ]
3757 } 3757 }
3758 3758
3759 if (enable_native_notifications) {
3760 sources += [
3761 "notifications/notification_platform_bridge_linux.cc",
3762 "notifications/notification_platform_bridge_linux.h",
3763 ]
3764 deps += [ "//build/linux/libgio" ]
3765 }
3766
3759 if (use_ozone) { 3767 if (use_ozone) {
3760 sources += [ 3768 sources += [
3761 "fullscreen_ozone.cc", 3769 "fullscreen_ozone.cc",
3762 "media/webrtc/window_icon_util_ozone.cc", 3770 "media/webrtc/window_icon_util_ozone.cc",
3763 ] 3771 ]
3764 } 3772 }
3765 } 3773 }
3766 3774
3767 if (enable_app_list) { 3775 if (enable_app_list) {
3768 deps += [ "//ui/app_list" ] 3776 deps += [ "//ui/app_list" ]
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
4632 "media/pepper_cdm_test_constants.cc", 4640 "media/pepper_cdm_test_constants.cc",
4633 "media/pepper_cdm_test_constants.h", 4641 "media/pepper_cdm_test_constants.h",
4634 ] 4642 ]
4635 } 4643 }
4636 } 4644 }
4637 4645
4638 service_manifest("preferences_forwarder_manifest") { 4646 service_manifest("preferences_forwarder_manifest") {
4639 name = "preferences_forwarder" 4647 name = "preferences_forwarder"
4640 source = "prefs/forwarder_manifest.json" 4648 source = "prefs/forwarder_manifest.json"
4641 } 4649 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698