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 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1844 "//services/ui/public/cpp", | 1844 "//services/ui/public/cpp", |
1845 "//services/ui/public/interfaces", | 1845 "//services/ui/public/interfaces", |
1846 "//ui/aura", | 1846 "//ui/aura", |
1847 "//ui/aura_extra", | 1847 "//ui/aura_extra", |
1848 "//ui/strings", | 1848 "//ui/strings", |
1849 "//ui/wm", | 1849 "//ui/wm", |
1850 ] | 1850 ] |
1851 sources += [ | 1851 sources += [ |
1852 "compositor/mus_browser_compositor_output_surface.cc", | 1852 "compositor/mus_browser_compositor_output_surface.cc", |
1853 "compositor/mus_browser_compositor_output_surface.h", | 1853 "compositor/mus_browser_compositor_output_surface.h", |
| 1854 "renderer_host/delegated_frame_host_client_aura.cc", |
| 1855 "renderer_host/delegated_frame_host_client_aura.h", |
1854 "renderer_host/render_widget_host_view_event_handler.cc", | 1856 "renderer_host/render_widget_host_view_event_handler.cc", |
1855 "renderer_host/render_widget_host_view_event_handler.h", | 1857 "renderer_host/render_widget_host_view_event_handler.h", |
1856 "renderer_host/render_widget_host_view_mus.cc", | |
1857 "renderer_host/render_widget_host_view_mus.h", | |
1858 "web_contents/web_contents_view_mus.cc", | |
1859 "web_contents/web_contents_view_mus.h", | |
1860 ] | 1858 ] |
1861 } else { # Not aura. | 1859 } else { # Not aura. |
1862 sources -= [ | 1860 sources -= [ |
1863 "media/capture/cursor_renderer_aura.cc", | 1861 "media/capture/cursor_renderer_aura.cc", |
1864 "media/capture/cursor_renderer_aura.h", | 1862 "media/capture/cursor_renderer_aura.h", |
1865 "media/capture/window_activity_tracker_aura.cc", | 1863 "media/capture/window_activity_tracker_aura.cc", |
1866 "media/capture/window_activity_tracker_aura.h", | 1864 "media/capture/window_activity_tracker_aura.h", |
1867 "renderer_host/compositor_resize_lock_aura.cc", | 1865 "renderer_host/compositor_resize_lock_aura.cc", |
1868 "renderer_host/compositor_resize_lock_aura.h", | 1866 "renderer_host/compositor_resize_lock_aura.h", |
1869 "renderer_host/input/synthetic_gesture_target_aura.cc", | 1867 "renderer_host/input/synthetic_gesture_target_aura.cc", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1990 if (!is_component_build) { | 1988 if (!is_component_build) { |
1991 public_deps = [ | 1989 public_deps = [ |
1992 ":browser", | 1990 ":browser", |
1993 ] | 1991 ] |
1994 } else { | 1992 } else { |
1995 public_deps = [ | 1993 public_deps = [ |
1996 "//third_party/leveldatabase", | 1994 "//third_party/leveldatabase", |
1997 ] | 1995 ] |
1998 } | 1996 } |
1999 } | 1997 } |
OLD | NEW |