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

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

Issue 2635293002: 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
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('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("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
(...skipping 1930 matching lines...) Expand 10 before | Expand all | Expand 10 after
1941 if (enable_mojo_media) { 1941 if (enable_mojo_media) {
1942 configs += [ "//media/mojo/services:mojo_media_config" ] 1942 configs += [ "//media/mojo/services:mojo_media_config" ]
1943 } 1943 }
1944 1944
1945 if (use_ozone) { 1945 if (use_ozone) {
1946 deps += [ "//ui/ozone" ] 1946 deps += [ "//ui/ozone" ]
1947 } 1947 }
1948 1948
1949 if (enable_webvr) { 1949 if (enable_webvr) {
1950 deps += [ "//device/vr" ] 1950 deps += [ "//device/vr" ]
1951 } else {
1952 deps += [ "//device/vr:mojo_bindings" ]
1951 } 1953 }
1952 1954
1953 if (enable_ipc_fuzzer) { 1955 if (enable_ipc_fuzzer) {
1954 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 1956 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
1955 } 1957 }
1956 1958
1957 if (use_minikin_hyphenation) { 1959 if (use_minikin_hyphenation) {
1958 sources += [ 1960 sources += [
1959 "hyphenation/hyphenation_impl.cc", 1961 "hyphenation/hyphenation_impl.cc",
1960 "hyphenation/hyphenation_impl.h", 1962 "hyphenation/hyphenation_impl.h",
1961 ] 1963 ]
1962 } 1964 }
1963 } 1965 }
1964 1966
1965 # See comment at the top of //content/BUILD.gn for how this works. 1967 # See comment at the top of //content/BUILD.gn for how this works.
1966 group("for_content_tests") { 1968 group("for_content_tests") {
1967 visibility = [ "//content/test/*" ] 1969 visibility = [ "//content/test/*" ]
1968 if (!is_component_build) { 1970 if (!is_component_build) {
1969 public_deps = [ 1971 public_deps = [
1970 ":browser", 1972 ":browser",
1971 ] 1973 ]
1972 } else { 1974 } else {
1973 public_deps = [ 1975 public_deps = [
1974 "//third_party/leveldatabase", 1976 "//third_party/leveldatabase",
1975 ] 1977 ]
1976 } 1978 }
1977 } 1979 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698