| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 1983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1994 configs += [ "//media/mojo/services:mojo_media_config" ] | 1994 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 1995 } | 1995 } |
| 1996 | 1996 |
| 1997 if (use_ozone) { | 1997 if (use_ozone) { |
| 1998 deps += [ "//ui/ozone" ] | 1998 deps += [ "//ui/ozone" ] |
| 1999 } | 1999 } |
| 2000 | 2000 |
| 2001 if (enable_webvr) { | 2001 if (enable_webvr) { |
| 2002 deps += [ "//device/vr" ] | 2002 deps += [ "//device/vr" ] |
| 2003 } else { | 2003 } else { |
| 2004 deps += [ "//device/vr:mojo_bindings" ] | 2004 deps += [ "//device/vr:mojo_only" ] |
| 2005 } | 2005 } |
| 2006 | 2006 |
| 2007 if (enable_ipc_fuzzer) { | 2007 if (enable_ipc_fuzzer) { |
| 2008 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 2008 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 2009 } | 2009 } |
| 2010 | 2010 |
| 2011 if (use_minikin_hyphenation) { | 2011 if (use_minikin_hyphenation) { |
| 2012 sources += [ | 2012 sources += [ |
| 2013 "hyphenation/hyphenation_impl.cc", | 2013 "hyphenation/hyphenation_impl.cc", |
| 2014 "hyphenation/hyphenation_impl.h", | 2014 "hyphenation/hyphenation_impl.h", |
| 2015 ] | 2015 ] |
| 2016 } | 2016 } |
| 2017 } | 2017 } |
| 2018 | 2018 |
| 2019 # See comment at the top of //content/BUILD.gn for how this works. | 2019 # See comment at the top of //content/BUILD.gn for how this works. |
| 2020 group("for_content_tests") { | 2020 group("for_content_tests") { |
| 2021 visibility = [ "//content/test/*" ] | 2021 visibility = [ "//content/test/*" ] |
| 2022 if (!is_component_build) { | 2022 if (!is_component_build) { |
| 2023 public_deps = [ | 2023 public_deps = [ |
| 2024 ":browser", | 2024 ":browser", |
| 2025 ] | 2025 ] |
| 2026 } else { | 2026 } else { |
| 2027 public_deps = [ | 2027 public_deps = [ |
| 2028 "//third_party/leveldatabase", | 2028 "//third_party/leveldatabase", |
| 2029 ] | 2029 ] |
| 2030 } | 2030 } |
| 2031 } | 2031 } |
| OLD | NEW |