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

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

Issue 2794103002: Add initial support for native Linux desktop notifications (Closed)
Patch Set: Refactor, move impl to chrome/browser/notifications 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') | chrome/browser/about_flags.cc » ('J')
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 3727 matching lines...) Expand 10 before | Expand all | Expand 10 after
3738 } 3738 }
3739 3739
3740 # libsecret hard depends on GLib. 3740 # libsecret hard depends on GLib.
3741 if (use_glib) { 3741 if (use_glib) {
3742 sources += [ 3742 sources += [
3743 "password_manager/native_backend_libsecret.cc", 3743 "password_manager/native_backend_libsecret.cc",
3744 "password_manager/native_backend_libsecret.h", 3744 "password_manager/native_backend_libsecret.h",
3745 ] 3745 ]
3746 defines += [ "USE_LIBSECRET" ] 3746 defines += [ "USE_LIBSECRET" ]
3747 deps += [ "//third_party/libsecret" ] 3747 deps += [ "//third_party/libsecret" ]
3748 if (use_gio) {
3749 sources += [
3750 "notifications/dbus_notification_manager.cc",
3751 "notifications/dbus_notification_manager.h",
3752 ]
3753 deps += [ "//build/linux/libgio" ]
3754 }
3748 } 3755 }
3749 3756
3750 if (use_ozone) { 3757 if (use_ozone) {
3751 sources += [ 3758 sources += [
3752 "fullscreen_ozone.cc", 3759 "fullscreen_ozone.cc",
3753 "media/webrtc/window_icon_util_ozone.cc", 3760 "media/webrtc/window_icon_util_ozone.cc",
3754 ] 3761 ]
3755 } 3762 }
3756 } 3763 }
3757 3764
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
4621 "media/pepper_cdm_test_constants.cc", 4628 "media/pepper_cdm_test_constants.cc",
4622 "media/pepper_cdm_test_constants.h", 4629 "media/pepper_cdm_test_constants.h",
4623 ] 4630 ]
4624 } 4631 }
4625 } 4632 }
4626 4633
4627 service_manifest("preferences_manifest") { 4634 service_manifest("preferences_manifest") {
4628 name = "preferences" 4635 name = "preferences"
4629 source = "prefs/preferences_manifest.json" 4636 source = "prefs/preferences_manifest.json"
4630 } 4637 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | chrome/browser/about_flags.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698