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

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

Issue 2472563002: Fix for a DCHECK in GpuSurfaceLookup (Closed)
Patch Set: Created 4 years, 1 month 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 | gpu/ipc/common/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("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1894 1894
1895 if (!use_ozone) { 1895 if (!use_ozone) {
1896 sources -= [ 1896 sources -= [
1897 "compositor/software_output_device_ozone.cc", 1897 "compositor/software_output_device_ozone.cc",
1898 "compositor/software_output_device_ozone.h", 1898 "compositor/software_output_device_ozone.h",
1899 ] 1899 ]
1900 } 1900 }
1901 deps += [ "//ui/compositor" ] 1901 deps += [ "//ui/compositor" ]
1902 } 1902 }
1903 1903
1904 if (is_android || is_mac) {
1905 deps += [ "//gpu/ipc/common:gpu_surface_tracker" ]
1906 }
1907
1908 if (enable_web_speech) { 1904 if (enable_web_speech) {
1909 deps += [ "//third_party/flac" ] 1905 deps += [ "//third_party/flac" ]
1910 } 1906 }
1911 1907
1912 if (is_linux && use_dbus) { 1908 if (is_linux && use_dbus) {
1913 deps += [ "//dbus" ] 1909 deps += [ "//dbus" ]
1914 } 1910 }
1915 1911
1916 if (is_linux) { 1912 if (is_linux) {
1917 deps += [ "//third_party/boringssl" ] 1913 deps += [ "//third_party/boringssl" ]
(...skipping 30 matching lines...) Expand all
1948 if (!is_component_build) { 1944 if (!is_component_build) {
1949 public_deps = [ 1945 public_deps = [
1950 ":browser", 1946 ":browser",
1951 ] 1947 ]
1952 } else { 1948 } else {
1953 public_deps = [ 1949 public_deps = [
1954 "//third_party/leveldatabase", 1950 "//third_party/leveldatabase",
1955 ] 1951 ]
1956 } 1952 }
1957 } 1953 }
OLDNEW
« no previous file with comments | « no previous file | gpu/ipc/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698