| 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 3667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3678 "../browser/background/background_contents_service_unittest.cc", | 3678 "../browser/background/background_contents_service_unittest.cc", |
| 3679 "../browser/background/background_mode_manager_unittest.cc", | 3679 "../browser/background/background_mode_manager_unittest.cc", |
| 3680 "../browser/background/background_mode_optimizer_unittest.cc", | 3680 "../browser/background/background_mode_optimizer_unittest.cc", |
| 3681 ] | 3681 ] |
| 3682 } | 3682 } |
| 3683 | 3683 |
| 3684 if (enable_spellcheck) { | 3684 if (enable_spellcheck) { |
| 3685 sources += [ | 3685 sources += [ |
| 3686 "../browser/spellchecker/spellcheck_custom_dictionary_unittest.cc", | 3686 "../browser/spellchecker/spellcheck_custom_dictionary_unittest.cc", |
| 3687 "../browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.c
c", | 3687 "../browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.c
c", |
| 3688 "../browser/spellchecker/spellcheck_message_filter_unittest.cc", | |
| 3689 "../browser/spellchecker/spellcheck_service_unittest.cc", | 3688 "../browser/spellchecker/spellcheck_service_unittest.cc", |
| 3690 "../browser/spellchecker/spelling_service_client_unittest.cc", | 3689 "../browser/spellchecker/spelling_service_client_unittest.cc", |
| 3691 "../tools/convert_dict/convert_dict_unittest.cc", | 3690 "../tools/convert_dict/convert_dict_unittest.cc", |
| 3692 ] | 3691 ] |
| 3692 |
| 3693 if (!use_browser_spellchecker) { |
| 3694 sources += [ "../browser/spellchecker/spellcheck_host_impl_unittest.cc" ] |
| 3695 } |
| 3693 } | 3696 } |
| 3694 | 3697 |
| 3695 if (enable_one_click_signin) { | 3698 if (enable_one_click_signin) { |
| 3696 sources += [ | 3699 sources += [ |
| 3697 "../browser/ui/sync/one_click_signin_sync_observer_unittest.cc", | 3700 "../browser/ui/sync/one_click_signin_sync_observer_unittest.cc", |
| 3698 "../browser/ui/sync/one_click_signin_sync_starter_unittest.cc", | 3701 "../browser/ui/sync/one_click_signin_sync_starter_unittest.cc", |
| 3699 ] | 3702 ] |
| 3700 } | 3703 } |
| 3701 | 3704 |
| 3702 if (enable_extensions) { | 3705 if (enable_extensions) { |
| (...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5029 } | 5032 } |
| 5030 | 5033 |
| 5031 if (is_win) { | 5034 if (is_win) { |
| 5032 loadable_module("conflicts_dll") { | 5035 loadable_module("conflicts_dll") { |
| 5033 testonly = true | 5036 testonly = true |
| 5034 sources = [ | 5037 sources = [ |
| 5035 "conflicts/conflicts_dll.cc", | 5038 "conflicts/conflicts_dll.cc", |
| 5036 ] | 5039 ] |
| 5037 } | 5040 } |
| 5038 } | 5041 } |
| OLD | NEW |