| 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("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "//third_party/icu", | 124 "//third_party/icu", |
| 125 "//third_party/kasko:kasko_features", | 125 "//third_party/kasko:kasko_features", |
| 126 "//third_party/libyuv", | 126 "//third_party/libyuv", |
| 127 "//third_party/re2", | 127 "//third_party/re2", |
| 128 "//third_party/zlib", | 128 "//third_party/zlib", |
| 129 "//third_party/zlib:zip", | 129 "//third_party/zlib:zip", |
| 130 "//ui/accessibility", | 130 "//ui/accessibility", |
| 131 "//ui/accessibility:ax_gen", | 131 "//ui/accessibility:ax_gen", |
| 132 "//ui/base", | 132 "//ui/base", |
| 133 "//ui/base/ime", | 133 "//ui/base/ime", |
| 134 "//ui/compositor", |
| 134 "//ui/display", | 135 "//ui/display", |
| 135 "//ui/display/types", | 136 "//ui/display/types", |
| 136 "//ui/events", | 137 "//ui/events", |
| 137 "//ui/events:gesture_detection", | 138 "//ui/events:gesture_detection", |
| 138 "//ui/events/blink", | 139 "//ui/events/blink", |
| 139 "//ui/gfx", | 140 "//ui/gfx", |
| 140 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
| 141 "//ui/gfx/geometry/mojo", | 142 "//ui/gfx/geometry/mojo", |
| 142 "//ui/gl", | 143 "//ui/gl", |
| 143 "//ui/native_theme", | 144 "//ui/native_theme", |
| (...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1913 "compositor/software_output_device_x11.h", | 1914 "compositor/software_output_device_x11.h", |
| 1914 ] | 1915 ] |
| 1915 } | 1916 } |
| 1916 | 1917 |
| 1917 if (!use_ozone) { | 1918 if (!use_ozone) { |
| 1918 sources -= [ | 1919 sources -= [ |
| 1919 "compositor/software_output_device_ozone.cc", | 1920 "compositor/software_output_device_ozone.cc", |
| 1920 "compositor/software_output_device_ozone.h", | 1921 "compositor/software_output_device_ozone.h", |
| 1921 ] | 1922 ] |
| 1922 } | 1923 } |
| 1923 deps += [ "//ui/compositor" ] | |
| 1924 } | 1924 } |
| 1925 | 1925 |
| 1926 if (enable_web_speech) { | 1926 if (enable_web_speech) { |
| 1927 deps += [ "//third_party/flac" ] | 1927 deps += [ "//third_party/flac" ] |
| 1928 } | 1928 } |
| 1929 | 1929 |
| 1930 if (is_linux && use_dbus) { | 1930 if (is_linux && use_dbus) { |
| 1931 deps += [ "//dbus" ] | 1931 deps += [ "//dbus" ] |
| 1932 } | 1932 } |
| 1933 | 1933 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1965 if (!is_component_build) { | 1965 if (!is_component_build) { |
| 1966 public_deps = [ | 1966 public_deps = [ |
| 1967 ":browser", | 1967 ":browser", |
| 1968 ] | 1968 ] |
| 1969 } else { | 1969 } else { |
| 1970 public_deps = [ | 1970 public_deps = [ |
| 1971 "//third_party/leveldatabase", | 1971 "//third_party/leveldatabase", |
| 1972 ] | 1972 ] |
| 1973 } | 1973 } |
| 1974 } | 1974 } |
| OLD | NEW |