Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: content/browser/BUILD.gn

Issue 2630003002: Ensure navigator.getVRDisplays always resolves. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 if (enable_mojo_media) { 1980 if (enable_mojo_media) {
1981 configs += [ "//media/mojo/services:mojo_media_config" ] 1981 configs += [ "//media/mojo/services:mojo_media_config" ]
1982 } 1982 }
1983 1983
1984 if (use_ozone) { 1984 if (use_ozone) {
1985 deps += [ "//ui/ozone" ] 1985 deps += [ "//ui/ozone" ]
1986 } 1986 }
1987 1987
1988 if (enable_webvr) { 1988 if (enable_webvr) {
1989 deps += [ "//device/vr" ] 1989 deps += [ "//device/vr" ]
1990 } else {
1991 deps += [ "//device/vr:mojo_bindings" ]
1990 } 1992 }
1991 1993
1992 if (enable_ipc_fuzzer) { 1994 if (enable_ipc_fuzzer) {
1993 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 1995 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
1994 } 1996 }
1995 1997
1996 if (use_minikin_hyphenation) { 1998 if (use_minikin_hyphenation) {
1997 sources += [ 1999 sources += [
1998 "hyphenation/hyphenation_impl.cc", 2000 "hyphenation/hyphenation_impl.cc",
1999 "hyphenation/hyphenation_impl.h", 2001 "hyphenation/hyphenation_impl.h",
2000 ] 2002 ]
2001 } 2003 }
2002 } 2004 }
2003 2005
2004 # See comment at the top of //content/BUILD.gn for how this works. 2006 # See comment at the top of //content/BUILD.gn for how this works.
2005 group("for_content_tests") { 2007 group("for_content_tests") {
2006 visibility = [ "//content/test/*" ] 2008 visibility = [ "//content/test/*" ]
2007 if (!is_component_build) { 2009 if (!is_component_build) {
2008 public_deps = [ 2010 public_deps = [
2009 ":browser", 2011 ":browser",
2010 ] 2012 ]
2011 } else { 2013 } else {
2012 public_deps = [ 2014 public_deps = [
2013 "//third_party/leveldatabase", 2015 "//third_party/leveldatabase",
2014 ] 2016 ]
2015 } 2017 }
2016 } 2018 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698