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

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, 12 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 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after
1960 } 1960 }
1961 1961
1962 if (enable_mojo_media) { 1962 if (enable_mojo_media) {
1963 configs += [ "//media/mojo/services:mojo_media_config" ] 1963 configs += [ "//media/mojo/services:mojo_media_config" ]
1964 } 1964 }
1965 1965
1966 if (use_ozone) { 1966 if (use_ozone) {
1967 deps += [ "//ui/ozone" ] 1967 deps += [ "//ui/ozone" ]
1968 } 1968 }
1969 1969
1970 if (enable_webvr) {
1971 deps += [ "//device/vr" ]
1972 }
1973
1974 if (enable_ipc_fuzzer) { 1970 if (enable_ipc_fuzzer) {
1975 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 1971 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
1976 } 1972 }
1977 1973
1978 if (use_minikin_hyphenation) { 1974 if (use_minikin_hyphenation) {
1979 sources += [ 1975 sources += [
1980 "hyphenation/hyphenation_impl.cc", 1976 "hyphenation/hyphenation_impl.cc",
1981 "hyphenation/hyphenation_impl.h", 1977 "hyphenation/hyphenation_impl.h",
1982 ] 1978 ]
1983 } 1979 }
1984 } 1980 }
1985 1981
1986 # See comment at the top of //content/BUILD.gn for how this works. 1982 # See comment at the top of //content/BUILD.gn for how this works.
1987 group("for_content_tests") { 1983 group("for_content_tests") {
1988 visibility = [ "//content/test/*" ] 1984 visibility = [ "//content/test/*" ]
1989 if (!is_component_build) { 1985 if (!is_component_build) {
1990 public_deps = [ 1986 public_deps = [
1991 ":browser", 1987 ":browser",
1992 ] 1988 ]
1993 } else { 1989 } else {
1994 public_deps = [ 1990 public_deps = [
1995 "//third_party/leveldatabase", 1991 "//third_party/leveldatabase",
1996 ] 1992 ]
1997 } 1993 }
1998 } 1994 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | third_party/WebKit/Source/modules/vr/VRController.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698