| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1990 if (!use_aura || is_win || is_chromeos) { | 1990 if (!use_aura || is_win || is_chromeos) { |
| 1991 sources -= [ "background/background_mode_manager_aura.cc" ] | 1991 sources -= [ "background/background_mode_manager_aura.cc" ] |
| 1992 } | 1992 } |
| 1993 } | 1993 } |
| 1994 if (enable_spellcheck) { | 1994 if (enable_spellcheck) { |
| 1995 sources += [ | 1995 sources += [ |
| 1996 "spellchecker/spellcheck_custom_dictionary.cc", | 1996 "spellchecker/spellcheck_custom_dictionary.cc", |
| 1997 "spellchecker/spellcheck_custom_dictionary.h", | 1997 "spellchecker/spellcheck_custom_dictionary.h", |
| 1998 "spellchecker/spellcheck_factory.cc", | 1998 "spellchecker/spellcheck_factory.cc", |
| 1999 "spellchecker/spellcheck_factory.h", | 1999 "spellchecker/spellcheck_factory.h", |
| 2000 "spellchecker/spellcheck_host_impl.cc", |
| 2001 "spellchecker/spellcheck_host_impl.h", |
| 2000 "spellchecker/spellcheck_hunspell_dictionary.cc", | 2002 "spellchecker/spellcheck_hunspell_dictionary.cc", |
| 2001 "spellchecker/spellcheck_hunspell_dictionary.h", | 2003 "spellchecker/spellcheck_hunspell_dictionary.h", |
| 2002 "spellchecker/spellcheck_message_filter.cc", | |
| 2003 "spellchecker/spellcheck_message_filter.h", | |
| 2004 "spellchecker/spellcheck_message_filter_platform_mac.cc", | 2004 "spellchecker/spellcheck_message_filter_platform_mac.cc", |
| 2005 "spellchecker/spellcheck_service.cc", | 2005 "spellchecker/spellcheck_service.cc", |
| 2006 "spellchecker/spellcheck_service.h", | 2006 "spellchecker/spellcheck_service.h", |
| 2007 ] | 2007 ] |
| 2008 deps += [ | 2008 deps += [ |
| 2009 "//components/spellcheck/browser", | 2009 "//components/spellcheck/browser", |
| 2010 "//components/spellcheck/common:common", | 2010 "//components/spellcheck/common:common", |
| 2011 ] | 2011 ] |
| 2012 | 2012 |
| 2013 if (!is_android) { | 2013 if (!is_android) { |
| (...skipping 2682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4696 "media/pepper_cdm_test_constants.cc", | 4696 "media/pepper_cdm_test_constants.cc", |
| 4697 "media/pepper_cdm_test_constants.h", | 4697 "media/pepper_cdm_test_constants.h", |
| 4698 ] | 4698 ] |
| 4699 } | 4699 } |
| 4700 } | 4700 } |
| 4701 | 4701 |
| 4702 service_manifest("preferences_forwarder_manifest") { | 4702 service_manifest("preferences_forwarder_manifest") { |
| 4703 name = "preferences_forwarder" | 4703 name = "preferences_forwarder" |
| 4704 source = "prefs/forwarder_manifest.json" | 4704 source = "prefs/forwarder_manifest.json" |
| 4705 } | 4705 } |
| OLD | NEW |