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 1897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1908 "compositor/software_output_device_x11.h", | 1908 "compositor/software_output_device_x11.h", |
1909 ] | 1909 ] |
1910 } | 1910 } |
1911 | 1911 |
1912 if (!use_ozone) { | 1912 if (!use_ozone) { |
1913 sources -= [ | 1913 sources -= [ |
1914 "compositor/software_output_device_ozone.cc", | 1914 "compositor/software_output_device_ozone.cc", |
1915 "compositor/software_output_device_ozone.h", | 1915 "compositor/software_output_device_ozone.h", |
1916 ] | 1916 ] |
1917 } | 1917 } |
1918 deps += [ "//ui/compositor" ] | 1918 deps += [ |
| 1919 "//cc/surfaces:surfaces", |
| 1920 "//ui/compositor", |
| 1921 ] |
1919 } | 1922 } |
1920 | 1923 |
1921 if (is_linux && use_dbus) { | 1924 if (is_linux && use_dbus) { |
1922 deps += [ "//dbus" ] | 1925 deps += [ "//dbus" ] |
1923 } | 1926 } |
1924 | 1927 |
1925 if (is_linux) { | 1928 if (is_linux) { |
1926 deps += [ "//third_party/boringssl" ] | 1929 deps += [ "//third_party/boringssl" ] |
1927 } | 1930 } |
1928 | 1931 |
(...skipping 27 matching lines...) Expand all Loading... |
1956 if (!is_component_build) { | 1959 if (!is_component_build) { |
1957 public_deps = [ | 1960 public_deps = [ |
1958 ":browser", | 1961 ":browser", |
1959 ] | 1962 ] |
1960 } else { | 1963 } else { |
1961 public_deps = [ | 1964 public_deps = [ |
1962 "//third_party/leveldatabase", | 1965 "//third_party/leveldatabase", |
1963 ] | 1966 ] |
1964 } | 1967 } |
1965 } | 1968 } |
OLD | NEW |