| 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 4169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4180 ] | 4180 ] |
| 4181 } | 4181 } |
| 4182 if (enable_notifications) { | 4182 if (enable_notifications) { |
| 4183 sources += [ | 4183 sources += [ |
| 4184 "../browser/notifications/desktop_notification_profile_util_unittest.cc", | 4184 "../browser/notifications/desktop_notification_profile_util_unittest.cc", |
| 4185 "../browser/notifications/message_center_notifications_unittest.cc", | 4185 "../browser/notifications/message_center_notifications_unittest.cc", |
| 4186 "../browser/notifications/message_center_settings_controller_unittest.cc", | 4186 "../browser/notifications/message_center_settings_controller_unittest.cc", |
| 4187 "../browser/notifications/notification_permission_context_unittest.cc", | 4187 "../browser/notifications/notification_permission_context_unittest.cc", |
| 4188 "../browser/notifications/notification_platform_bridge_mac_unittest.mm", | 4188 "../browser/notifications/notification_platform_bridge_mac_unittest.mm", |
| 4189 "../browser/notifications/platform_notification_service_unittest.cc", | 4189 "../browser/notifications/platform_notification_service_unittest.cc", |
| 4190 "../browser/notifications/stub_alert_dispatcher_mac.h", |
| 4191 "../browser/notifications/stub_alert_dispatcher_mac.mm", |
| 4190 "../browser/notifications/stub_notification_center_mac.h", | 4192 "../browser/notifications/stub_notification_center_mac.h", |
| 4191 "../browser/notifications/stub_notification_center_mac.mm", | 4193 "../browser/notifications/stub_notification_center_mac.mm", |
| 4192 ] | 4194 ] |
| 4193 if (is_android) { | 4195 if (is_android) { |
| 4194 sources -= [ | 4196 sources -= [ |
| 4195 # Android does not use the Message Center notification system. | 4197 # Android does not use the Message Center notification system. |
| 4196 "../browser/notifications/message_center_notifications_unittest.cc", | 4198 "../browser/notifications/message_center_notifications_unittest.cc", |
| 4197 "../browser/notifications/message_center_settings_controller_unittest.cc
", | 4199 "../browser/notifications/message_center_settings_controller_unittest.cc
", |
| 4198 ] | 4200 ] |
| 4199 } | 4201 } |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5100 "touch_hud", | 5102 "touch_hud", |
| 5101 "ui", | 5103 "ui", |
| 5102 ] | 5104 ] |
| 5103 | 5105 |
| 5104 if (is_linux && !is_android) { | 5106 if (is_linux && !is_android) { |
| 5105 deps += [ "//components/font_service:manifest" ] | 5107 deps += [ "//components/font_service:manifest" ] |
| 5106 packaged_services += [ "font_service" ] | 5108 packaged_services += [ "font_service" ] |
| 5107 } | 5109 } |
| 5108 } | 5110 } |
| 5109 } | 5111 } |
| OLD | NEW |