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

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

Issue 2514033002: Introducing SurfaceReferenceFactory (Closed)
Patch Set: x 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
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 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after
1927 "compositor/software_output_device_x11.h", 1927 "compositor/software_output_device_x11.h",
1928 ] 1928 ]
1929 } 1929 }
1930 1930
1931 if (!use_ozone) { 1931 if (!use_ozone) {
1932 sources -= [ 1932 sources -= [
1933 "compositor/software_output_device_ozone.cc", 1933 "compositor/software_output_device_ozone.cc",
1934 "compositor/software_output_device_ozone.h", 1934 "compositor/software_output_device_ozone.h",
1935 ] 1935 ]
1936 } 1936 }
1937 deps += [ "//ui/compositor" ] 1937 deps += [
1938 "//cc/surfaces:surfaces",
1939 "//ui/compositor",
1940 ]
1938 } 1941 }
1939 1942
1940 if (enable_web_speech) { 1943 if (enable_web_speech) {
1941 deps += [ "//third_party/flac" ] 1944 deps += [ "//third_party/flac" ]
1942 } 1945 }
1943 1946
1944 if (is_linux && use_dbus) { 1947 if (is_linux && use_dbus) {
1945 deps += [ "//dbus" ] 1948 deps += [ "//dbus" ]
1946 } 1949 }
1947 1950
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1979 if (!is_component_build) { 1982 if (!is_component_build) {
1980 public_deps = [ 1983 public_deps = [
1981 ":browser", 1984 ":browser",
1982 ] 1985 ]
1983 } else { 1986 } else {
1984 public_deps = [ 1987 public_deps = [
1985 "//third_party/leveldatabase", 1988 "//third_party/leveldatabase",
1986 ] 1989 ]
1987 } 1990 }
1988 } 1991 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698