| 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 4175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4186 sources -= [ | 4186 sources -= [ |
| 4187 # Android does not use the Message Center notification system. | 4187 # Android does not use the Message Center notification system. |
| 4188 "../browser/notifications/message_center_notifications_unittest.cc", | 4188 "../browser/notifications/message_center_notifications_unittest.cc", |
| 4189 "../browser/notifications/message_center_settings_controller_unittest.cc
", | 4189 "../browser/notifications/message_center_settings_controller_unittest.cc
", |
| 4190 ] | 4190 ] |
| 4191 } | 4191 } |
| 4192 } | 4192 } |
| 4193 | 4193 |
| 4194 if (safe_browsing_mode > 0) { | 4194 if (safe_browsing_mode > 0) { |
| 4195 sources += [ | 4195 sources += [ |
| 4196 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", |
| 4196 "../browser/safe_browsing/ping_manager_unittest.cc", | 4197 "../browser/safe_browsing/ping_manager_unittest.cc", |
| 4197 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", | 4198 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", |
| 4198 "../browser/safe_browsing/threat_details_unittest.cc", | 4199 "../browser/safe_browsing/threat_details_unittest.cc", |
| 4199 "../browser/safe_browsing/ui_manager_unittest.cc", | 4200 "../browser/safe_browsing/ui_manager_unittest.cc", |
| 4200 "../common/safe_browsing/file_type_policies_test_util.cc", | 4201 "../common/safe_browsing/file_type_policies_test_util.cc", |
| 4201 "../common/safe_browsing/file_type_policies_test_util.h", | 4202 "../common/safe_browsing/file_type_policies_test_util.h", |
| 4202 "../common/safe_browsing/file_type_policies_unittest.cc", | 4203 "../common/safe_browsing/file_type_policies_unittest.cc", |
| 4203 ] | 4204 ] |
| 4204 } | 4205 } |
| 4205 if (safe_browsing_mode == 1) { | 4206 if (safe_browsing_mode == 1) { |
| (...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5092 "touch_hud", | 5093 "touch_hud", |
| 5093 "ui", | 5094 "ui", |
| 5094 ] | 5095 ] |
| 5095 | 5096 |
| 5096 if (is_linux && !is_android) { | 5097 if (is_linux && !is_android) { |
| 5097 deps += [ "//components/font_service:manifest" ] | 5098 deps += [ "//components/font_service:manifest" ] |
| 5098 packaged_services += [ "font_service" ] | 5099 packaged_services += [ "font_service" ] |
| 5099 } | 5100 } |
| 5100 } | 5101 } |
| 5101 } | 5102 } |
| OLD | NEW |