| 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 3750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3761 if (is_desktop_linux && enable_native_notifications) { | 3761 if (is_desktop_linux && enable_native_notifications) { |
| 3762 sources += [ "../browser/notifications/notification_platform_bridge_linux_un
ittest.cc" ] | 3762 sources += [ "../browser/notifications/notification_platform_bridge_linux_un
ittest.cc" ] |
| 3763 } | 3763 } |
| 3764 | 3764 |
| 3765 if (is_linux || is_win) { | 3765 if (is_linux || is_win) { |
| 3766 sources += [ "../browser/webshare/share_service_impl_unittest.cc" ] | 3766 sources += [ "../browser/webshare/share_service_impl_unittest.cc" ] |
| 3767 } | 3767 } |
| 3768 | 3768 |
| 3769 if (is_chromeos) { | 3769 if (is_chromeos) { |
| 3770 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega
te_unittest.cc" ] | 3770 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega
te_unittest.cc" ] |
| 3771 sources += |
| 3772 [ "../browser/component_updater/cros_component_installer_unittest.cc" ] |
| 3771 } | 3773 } |
| 3772 if (enable_background) { | 3774 if (enable_background) { |
| 3773 sources += [ | 3775 sources += [ |
| 3774 "../browser/background/background_application_list_model_unittest.cc", | 3776 "../browser/background/background_application_list_model_unittest.cc", |
| 3775 "../browser/background/background_contents_service_unittest.cc", | 3777 "../browser/background/background_contents_service_unittest.cc", |
| 3776 "../browser/background/background_mode_manager_unittest.cc", | 3778 "../browser/background/background_mode_manager_unittest.cc", |
| 3777 "../browser/background/background_mode_optimizer_unittest.cc", | 3779 "../browser/background/background_mode_optimizer_unittest.cc", |
| 3778 ] | 3780 ] |
| 3779 } | 3781 } |
| 3780 | 3782 |
| (...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5131 } | 5133 } |
| 5132 | 5134 |
| 5133 if (is_win) { | 5135 if (is_win) { |
| 5134 loadable_module("conflicts_dll") { | 5136 loadable_module("conflicts_dll") { |
| 5135 testonly = true | 5137 testonly = true |
| 5136 sources = [ | 5138 sources = [ |
| 5137 "conflicts/conflicts_dll.cc", | 5139 "conflicts/conflicts_dll.cc", |
| 5138 ] | 5140 ] |
| 5139 } | 5141 } |
| 5140 } | 5142 } |
| OLD | NEW |