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

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

Issue 2624633002: Remove Sync GetPose VRService call, implement VRVSyncProvider (Closed)
Patch Set: Remove visibility restrictions - can address later if desired. 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
« no previous file with comments | « chrome/browser/android/vr_shell/vr_shell_gl.cc ('k') | device/vr/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after
1987 } 1987 }
1988 1988
1989 if (enable_mojo_media) { 1989 if (enable_mojo_media) {
1990 configs += [ "//media/mojo/services:mojo_media_config" ] 1990 configs += [ "//media/mojo/services:mojo_media_config" ]
1991 } 1991 }
1992 1992
1993 if (use_ozone) { 1993 if (use_ozone) {
1994 deps += [ "//ui/ozone" ] 1994 deps += [ "//ui/ozone" ]
1995 } 1995 }
1996 1996
1997 if (enable_webvr) { 1997 deps += [ "//device/vr" ]
clamy 2017/01/25 15:19:47 If I understand correctly this means we'll always
mthiesse 2017/01/25 15:36:13 To be honest, I'm really not sure how this managed
1998 deps += [ "//device/vr" ]
1999 } else {
2000 deps += [ "//device/vr:mojo_bindings" ]
2001 }
2002 1998
2003 if (enable_ipc_fuzzer) { 1999 if (enable_ipc_fuzzer) {
2004 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 2000 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
2005 } 2001 }
2006 2002
2007 if (use_minikin_hyphenation) { 2003 if (use_minikin_hyphenation) {
2008 sources += [ 2004 sources += [
2009 "hyphenation/hyphenation_impl.cc", 2005 "hyphenation/hyphenation_impl.cc",
2010 "hyphenation/hyphenation_impl.h", 2006 "hyphenation/hyphenation_impl.h",
2011 ] 2007 ]
2012 } 2008 }
2013 } 2009 }
2014 2010
2015 # See comment at the top of //content/BUILD.gn for how this works. 2011 # See comment at the top of //content/BUILD.gn for how this works.
2016 group("for_content_tests") { 2012 group("for_content_tests") {
2017 visibility = [ "//content/test/*" ] 2013 visibility = [ "//content/test/*" ]
2018 if (!is_component_build) { 2014 if (!is_component_build) {
2019 public_deps = [ 2015 public_deps = [
2020 ":browser", 2016 ":browser",
2021 ] 2017 ]
2022 } else { 2018 } else {
2023 public_deps = [ 2019 public_deps = [
2024 "//third_party/leveldatabase", 2020 "//third_party/leveldatabase",
2025 ] 2021 ]
2026 } 2022 }
2027 } 2023 }
OLDNEW
« no previous file with comments | « chrome/browser/android/vr_shell/vr_shell_gl.cc ('k') | device/vr/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698