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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "//device/bluetooth", | 71 "//device/bluetooth", |
72 "//device/gamepad", | 72 "//device/gamepad", |
73 "//device/generic_sensor", | 73 "//device/generic_sensor", |
74 "//device/geolocation", | 74 "//device/geolocation", |
75 "//device/geolocation/public/interfaces", | 75 "//device/geolocation/public/interfaces", |
76 "//device/nfc:mojo_bindings", | 76 "//device/nfc:mojo_bindings", |
77 "//device/power_save_blocker", | 77 "//device/power_save_blocker", |
78 "//device/screen_orientation/public/interfaces", | 78 "//device/screen_orientation/public/interfaces", |
79 "//device/sensors/public/cpp", | 79 "//device/sensors/public/cpp", |
80 "//device/vibration", | 80 "//device/vibration", |
| 81 "//device/vr", |
81 "//device/wake_lock", | 82 "//device/wake_lock", |
82 "//google_apis", | 83 "//google_apis", |
83 "//gpu", | 84 "//gpu", |
84 "//gpu/command_buffer/client:gles2_implementation", | 85 "//gpu/command_buffer/client:gles2_implementation", |
85 "//gpu/command_buffer/client:gles2_interface", | 86 "//gpu/command_buffer/client:gles2_interface", |
86 "//gpu/ipc/host", | 87 "//gpu/ipc/host", |
87 "//ipc", | 88 "//ipc", |
88 "//ipc:mojom", | 89 "//ipc:mojom", |
89 "//media", | 90 "//media", |
90 "//media/capture", | 91 "//media/capture", |
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1995 } | 1996 } |
1996 | 1997 |
1997 if (enable_mojo_media) { | 1998 if (enable_mojo_media) { |
1998 configs += [ "//media/mojo/services:mojo_media_config" ] | 1999 configs += [ "//media/mojo/services:mojo_media_config" ] |
1999 } | 2000 } |
2000 | 2001 |
2001 if (use_ozone) { | 2002 if (use_ozone) { |
2002 deps += [ "//ui/ozone" ] | 2003 deps += [ "//ui/ozone" ] |
2003 } | 2004 } |
2004 | 2005 |
2005 if (enable_webvr) { | |
2006 deps += [ "//device/vr" ] | |
2007 } else { | |
2008 deps += [ "//device/vr:mojo_only" ] | |
2009 } | |
2010 | |
2011 if (enable_ipc_fuzzer) { | 2006 if (enable_ipc_fuzzer) { |
2012 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 2007 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
2013 } | 2008 } |
2014 | 2009 |
2015 if (use_minikin_hyphenation) { | 2010 if (use_minikin_hyphenation) { |
2016 sources += [ | 2011 sources += [ |
2017 "hyphenation/hyphenation_impl.cc", | 2012 "hyphenation/hyphenation_impl.cc", |
2018 "hyphenation/hyphenation_impl.h", | 2013 "hyphenation/hyphenation_impl.h", |
2019 ] | 2014 ] |
2020 } | 2015 } |
2021 } | 2016 } |
2022 | 2017 |
2023 # See comment at the top of //content/BUILD.gn for how this works. | 2018 # See comment at the top of //content/BUILD.gn for how this works. |
2024 group("for_content_tests") { | 2019 group("for_content_tests") { |
2025 visibility = [ "//content/test/*" ] | 2020 visibility = [ "//content/test/*" ] |
2026 if (!is_component_build) { | 2021 if (!is_component_build) { |
2027 public_deps = [ | 2022 public_deps = [ |
2028 ":browser", | 2023 ":browser", |
2029 ] | 2024 ] |
2030 } else { | 2025 } else { |
2031 public_deps = [ | 2026 public_deps = [ |
2032 "//third_party/leveldatabase", | 2027 "//third_party/leveldatabase", |
2033 ] | 2028 ] |
2034 } | 2029 } |
2035 } | 2030 } |
OLD | NEW |