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 1931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |