OLD | NEW |
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 1921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1932 "compositor/software_output_device_x11.h", | 1932 "compositor/software_output_device_x11.h", |
1933 ] | 1933 ] |
1934 } | 1934 } |
1935 | 1935 |
1936 if (!use_ozone) { | 1936 if (!use_ozone) { |
1937 sources -= [ | 1937 sources -= [ |
1938 "compositor/software_output_device_ozone.cc", | 1938 "compositor/software_output_device_ozone.cc", |
1939 "compositor/software_output_device_ozone.h", | 1939 "compositor/software_output_device_ozone.h", |
1940 ] | 1940 ] |
1941 } | 1941 } |
1942 deps += [ "//ui/compositor" ] | 1942 deps += [ |
| 1943 "//cc/surfaces:surfaces", |
| 1944 "//ui/compositor", |
| 1945 ] |
1943 } | 1946 } |
1944 | 1947 |
1945 if (is_linux && use_dbus) { | 1948 if (is_linux && use_dbus) { |
1946 deps += [ "//dbus" ] | 1949 deps += [ "//dbus" ] |
1947 } | 1950 } |
1948 | 1951 |
1949 if (is_linux) { | 1952 if (is_linux) { |
1950 deps += [ "//third_party/boringssl" ] | 1953 deps += [ "//third_party/boringssl" ] |
1951 } | 1954 } |
1952 | 1955 |
(...skipping 27 matching lines...) Expand all Loading... |
1980 if (!is_component_build) { | 1983 if (!is_component_build) { |
1981 public_deps = [ | 1984 public_deps = [ |
1982 ":browser", | 1985 ":browser", |
1983 ] | 1986 ] |
1984 } else { | 1987 } else { |
1985 public_deps = [ | 1988 public_deps = [ |
1986 "//third_party/leveldatabase", | 1989 "//third_party/leveldatabase", |
1987 ] | 1990 ] |
1988 } | 1991 } |
1989 } | 1992 } |
OLD | NEW |