| 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 3727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |