| 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("//gpu/vulkan/features.gni") | 7 import("//gpu/vulkan/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") |
| (...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1913 if (use_aura) { | 1913 if (use_aura) { |
| 1914 deps += [ | 1914 deps += [ |
| 1915 "//services/ui/public/cpp", | 1915 "//services/ui/public/cpp", |
| 1916 "//services/ui/public/interfaces", | 1916 "//services/ui/public/interfaces", |
| 1917 "//ui/aura", | 1917 "//ui/aura", |
| 1918 "//ui/aura_extra", | 1918 "//ui/aura_extra", |
| 1919 "//ui/strings", | 1919 "//ui/strings", |
| 1920 "//ui/wm", | 1920 "//ui/wm", |
| 1921 ] | 1921 ] |
| 1922 sources += [ | 1922 sources += [ |
| 1923 "compositor/mus_browser_compositor_output_surface.cc", | |
| 1924 "compositor/mus_browser_compositor_output_surface.h", | |
| 1925 "renderer_host/delegated_frame_host_client_aura.cc", | 1923 "renderer_host/delegated_frame_host_client_aura.cc", |
| 1926 "renderer_host/delegated_frame_host_client_aura.h", | 1924 "renderer_host/delegated_frame_host_client_aura.h", |
| 1927 "renderer_host/render_widget_host_view_event_handler.cc", | 1925 "renderer_host/render_widget_host_view_event_handler.cc", |
| 1928 "renderer_host/render_widget_host_view_event_handler.h", | 1926 "renderer_host/render_widget_host_view_event_handler.h", |
| 1929 ] | 1927 ] |
| 1930 } else { # Not aura. | 1928 } else { # Not aura. |
| 1931 sources -= [ | 1929 sources -= [ |
| 1932 "renderer_host/compositor_resize_lock_aura.cc", | 1930 "renderer_host/compositor_resize_lock_aura.cc", |
| 1933 "renderer_host/compositor_resize_lock_aura.h", | 1931 "renderer_host/compositor_resize_lock_aura.h", |
| 1934 "renderer_host/input/synthetic_gesture_target_aura.cc", | 1932 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2056 if (!is_component_build) { | 2054 if (!is_component_build) { |
| 2057 public_deps = [ | 2055 public_deps = [ |
| 2058 ":browser", | 2056 ":browser", |
| 2059 ] | 2057 ] |
| 2060 } else { | 2058 } else { |
| 2061 public_deps = [ | 2059 public_deps = [ |
| 2062 "//third_party/leveldatabase", | 2060 "//third_party/leveldatabase", |
| 2063 ] | 2061 ] |
| 2064 } | 2062 } |
| 2065 } | 2063 } |
| OLD | NEW |