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

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

Issue 2603553002: Ports VRService to be hosted in the device service.
Patch Set: Ports VRService to be hosted in the device service. 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 | « no previous file | content/browser/DEPS » ('j') | services/device/manifest.json » ('J')
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 1967 matching lines...) Expand 10 before | Expand all | Expand 10 after
1978 } 1978 }
1979 1979
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) {
1989 deps += [ "//device/vr" ]
1990 } else {
1991 deps += [ "//device/vr:mojo_bindings" ]
1992 }
1993
1994 if (enable_ipc_fuzzer) { 1988 if (enable_ipc_fuzzer) {
1995 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 1989 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
1996 } 1990 }
1997 1991
1998 if (use_minikin_hyphenation) { 1992 if (use_minikin_hyphenation) {
1999 sources += [ 1993 sources += [
2000 "hyphenation/hyphenation_impl.cc", 1994 "hyphenation/hyphenation_impl.cc",
2001 "hyphenation/hyphenation_impl.h", 1995 "hyphenation/hyphenation_impl.h",
2002 ] 1996 ]
2003 } 1997 }
2004 } 1998 }
2005 1999
2006 # See comment at the top of //content/BUILD.gn for how this works. 2000 # See comment at the top of //content/BUILD.gn for how this works.
2007 group("for_content_tests") { 2001 group("for_content_tests") {
2008 visibility = [ "//content/test/*" ] 2002 visibility = [ "//content/test/*" ]
2009 if (!is_component_build) { 2003 if (!is_component_build) {
2010 public_deps = [ 2004 public_deps = [
2011 ":browser", 2005 ":browser",
2012 ] 2006 ]
2013 } else { 2007 } else {
2014 public_deps = [ 2008 public_deps = [
2015 "//third_party/leveldatabase", 2009 "//third_party/leveldatabase",
2016 ] 2010 ]
2017 } 2011 }
2018 } 2012 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | services/device/manifest.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698