| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 4135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4146 ] | 4146 ] |
| 4147 } | 4147 } |
| 4148 if (enable_notifications) { | 4148 if (enable_notifications) { |
| 4149 sources += [ | 4149 sources += [ |
| 4150 "../browser/notifications/desktop_notification_profile_util_unittest.cc", | 4150 "../browser/notifications/desktop_notification_profile_util_unittest.cc", |
| 4151 "../browser/notifications/message_center_notifications_unittest.cc", | 4151 "../browser/notifications/message_center_notifications_unittest.cc", |
| 4152 "../browser/notifications/message_center_settings_controller_unittest.cc", | 4152 "../browser/notifications/message_center_settings_controller_unittest.cc", |
| 4153 "../browser/notifications/notification_permission_context_unittest.cc", | 4153 "../browser/notifications/notification_permission_context_unittest.cc", |
| 4154 "../browser/notifications/notification_platform_bridge_mac_unittest.mm", | 4154 "../browser/notifications/notification_platform_bridge_mac_unittest.mm", |
| 4155 "../browser/notifications/platform_notification_service_unittest.cc", | 4155 "../browser/notifications/platform_notification_service_unittest.cc", |
| 4156 "../browser/notifications/stub_alert_dispatcher_mac.h", |
| 4157 "../browser/notifications/stub_alert_dispatcher_mac.mm", |
| 4156 "../browser/notifications/stub_notification_center_mac.h", | 4158 "../browser/notifications/stub_notification_center_mac.h", |
| 4157 "../browser/notifications/stub_notification_center_mac.mm", | 4159 "../browser/notifications/stub_notification_center_mac.mm", |
| 4158 ] | 4160 ] |
| 4159 if (is_android) { | 4161 if (is_android) { |
| 4160 sources -= [ | 4162 sources -= [ |
| 4161 # Android does not use the Message Center notification system. | 4163 # Android does not use the Message Center notification system. |
| 4162 "../browser/notifications/message_center_notifications_unittest.cc", | 4164 "../browser/notifications/message_center_notifications_unittest.cc", |
| 4163 "../browser/notifications/message_center_settings_controller_unittest.cc
", | 4165 "../browser/notifications/message_center_settings_controller_unittest.cc
", |
| 4164 ] | 4166 ] |
| 4165 } | 4167 } |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5053 "touch_hud", | 5055 "touch_hud", |
| 5054 "ui", | 5056 "ui", |
| 5055 ] | 5057 ] |
| 5056 | 5058 |
| 5057 if (is_linux && !is_android) { | 5059 if (is_linux && !is_android) { |
| 5058 deps += [ "//components/font_service:manifest" ] | 5060 deps += [ "//components/font_service:manifest" ] |
| 5059 packaged_services += [ "font_service" ] | 5061 packaged_services += [ "font_service" ] |
| 5060 } | 5062 } |
| 5061 } | 5063 } |
| 5062 } | 5064 } |
| OLD | NEW |