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

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

Issue 2514033002: Introducing SurfaceReferenceFactory (Closed)
Patch Set: rebase Created 4 years 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 | « components/exo/surface.cc ('k') | content/browser/renderer_host/delegated_frame_host.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("//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 1931 matching lines...) Expand 10 before | Expand all | Expand 10 after
1942 "compositor/software_output_device_x11.h", 1942 "compositor/software_output_device_x11.h",
1943 ] 1943 ]
1944 } 1944 }
1945 1945
1946 if (!use_ozone) { 1946 if (!use_ozone) {
1947 sources -= [ 1947 sources -= [
1948 "compositor/software_output_device_ozone.cc", 1948 "compositor/software_output_device_ozone.cc",
1949 "compositor/software_output_device_ozone.h", 1949 "compositor/software_output_device_ozone.h",
1950 ] 1950 ]
1951 } 1951 }
1952 deps += [ "//ui/compositor" ] 1952 deps += [
1953 "//cc/surfaces:surfaces",
1954 "//ui/compositor",
1955 ]
1953 } 1956 }
1954 1957
1955 if (is_linux && use_dbus) { 1958 if (is_linux && use_dbus) {
1956 deps += [ "//dbus" ] 1959 deps += [ "//dbus" ]
1957 } 1960 }
1958 1961
1959 if (is_linux) { 1962 if (is_linux) {
1960 deps += [ "//third_party/boringssl" ] 1963 deps += [ "//third_party/boringssl" ]
1961 } 1964 }
1962 1965
(...skipping 27 matching lines...) Expand all
1990 if (!is_component_build) { 1993 if (!is_component_build) {
1991 public_deps = [ 1994 public_deps = [
1992 ":browser", 1995 ":browser",
1993 ] 1996 ]
1994 } else { 1997 } else {
1995 public_deps = [ 1998 public_deps = [
1996 "//third_party/leveldatabase", 1999 "//third_party/leveldatabase",
1997 ] 2000 ]
1998 } 2001 }
1999 } 2002 }
OLDNEW
« no previous file with comments | « components/exo/surface.cc ('k') | content/browser/renderer_host/delegated_frame_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698