| 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 3736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3747 } | 3747 } |
| 3748 | 3748 |
| 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 if (use_gio) { |
| 3758 sources += [ |
| 3759 "notifications/notification_platform_bridge_linux.cc", |
| 3760 "notifications/notification_platform_bridge_linux.h", |
| 3761 ] |
| 3762 deps += [ "//build/linux/libgio" ] |
| 3763 } |
| 3757 } | 3764 } |
| 3758 | 3765 |
| 3759 if (use_ozone) { | 3766 if (use_ozone) { |
| 3760 sources += [ | 3767 sources += [ |
| 3761 "fullscreen_ozone.cc", | 3768 "fullscreen_ozone.cc", |
| 3762 "media/webrtc/window_icon_util_ozone.cc", | 3769 "media/webrtc/window_icon_util_ozone.cc", |
| 3763 ] | 3770 ] |
| 3764 } | 3771 } |
| 3765 } | 3772 } |
| 3766 | 3773 |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4632 "media/pepper_cdm_test_constants.cc", | 4639 "media/pepper_cdm_test_constants.cc", |
| 4633 "media/pepper_cdm_test_constants.h", | 4640 "media/pepper_cdm_test_constants.h", |
| 4634 ] | 4641 ] |
| 4635 } | 4642 } |
| 4636 } | 4643 } |
| 4637 | 4644 |
| 4638 service_manifest("preferences_forwarder_manifest") { | 4645 service_manifest("preferences_forwarder_manifest") { |
| 4639 name = "preferences_forwarder" | 4646 name = "preferences_forwarder" |
| 4640 source = "prefs/forwarder_manifest.json" | 4647 source = "prefs/forwarder_manifest.json" |
| 4641 } | 4648 } |
| OLD | NEW |