Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(650)

Side by Side Diff: content/browser/BUILD.gn

Issue 2773433003: Fix CompositorResizeLock to do something. (Closed)
Patch Set: resizelock: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 "push_messaging/push_messaging_context.h", 1027 "push_messaging/push_messaging_context.h",
1028 "push_messaging/push_messaging_manager.cc", 1028 "push_messaging/push_messaging_manager.cc",
1029 "push_messaging/push_messaging_manager.h", 1029 "push_messaging/push_messaging_manager.h",
1030 "push_messaging/push_messaging_router.cc", 1030 "push_messaging/push_messaging_router.cc",
1031 "push_messaging/push_messaging_router.h", 1031 "push_messaging/push_messaging_router.h",
1032 "quota_dispatcher_host.cc", 1032 "quota_dispatcher_host.cc",
1033 "quota_dispatcher_host.h", 1033 "quota_dispatcher_host.h",
1034 "renderer_host/clipboard_message_filter.cc", 1034 "renderer_host/clipboard_message_filter.cc",
1035 "renderer_host/clipboard_message_filter.h", 1035 "renderer_host/clipboard_message_filter.h",
1036 "renderer_host/clipboard_message_filter_mac.mm", 1036 "renderer_host/clipboard_message_filter_mac.mm",
1037 "renderer_host/compositor_resize_lock_aura.cc",
1038 "renderer_host/compositor_resize_lock_aura.h",
1039 "renderer_host/database_message_filter.cc", 1037 "renderer_host/database_message_filter.cc",
1040 "renderer_host/database_message_filter.h", 1038 "renderer_host/database_message_filter.h",
1041 "renderer_host/delegated_frame_evictor.cc", 1039 "renderer_host/delegated_frame_evictor.cc",
1042 "renderer_host/delegated_frame_evictor.h", 1040 "renderer_host/delegated_frame_evictor.h",
1043 "renderer_host/dip_util.cc", 1041 "renderer_host/dip_util.cc",
1044 "renderer_host/dip_util.h", 1042 "renderer_host/dip_util.h",
1045 "renderer_host/dwrite_font_proxy_message_filter_win.cc", 1043 "renderer_host/dwrite_font_proxy_message_filter_win.cc",
1046 "renderer_host/dwrite_font_proxy_message_filter_win.h", 1044 "renderer_host/dwrite_font_proxy_message_filter_win.h",
1047 "renderer_host/event_with_latency_info.h", 1045 "renderer_host/event_with_latency_info.h",
1048 "renderer_host/file_utilities_message_filter.cc", 1046 "renderer_host/file_utilities_message_filter.cc",
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 "//ui/wm", 1915 "//ui/wm",
1918 ] 1916 ]
1919 sources += [ 1917 sources += [
1920 "renderer_host/delegated_frame_host_client_aura.cc", 1918 "renderer_host/delegated_frame_host_client_aura.cc",
1921 "renderer_host/delegated_frame_host_client_aura.h", 1919 "renderer_host/delegated_frame_host_client_aura.h",
1922 "renderer_host/render_widget_host_view_event_handler.cc", 1920 "renderer_host/render_widget_host_view_event_handler.cc",
1923 "renderer_host/render_widget_host_view_event_handler.h", 1921 "renderer_host/render_widget_host_view_event_handler.h",
1924 ] 1922 ]
1925 } else { # Not aura. 1923 } else { # Not aura.
1926 sources -= [ 1924 sources -= [
1927 "renderer_host/compositor_resize_lock_aura.cc",
1928 "renderer_host/compositor_resize_lock_aura.h",
1929 "renderer_host/input/synthetic_gesture_target_aura.cc", 1925 "renderer_host/input/synthetic_gesture_target_aura.cc",
1930 "renderer_host/input/synthetic_gesture_target_aura.h", 1926 "renderer_host/input/synthetic_gesture_target_aura.h",
1931 "renderer_host/input/touch_selection_controller_client_aura.cc", 1927 "renderer_host/input/touch_selection_controller_client_aura.cc",
1932 "renderer_host/input/touch_selection_controller_client_aura.h", 1928 "renderer_host/input/touch_selection_controller_client_aura.h",
1933 "renderer_host/native_web_keyboard_event_aura.cc", 1929 "renderer_host/native_web_keyboard_event_aura.cc",
1934 "renderer_host/render_widget_host_view_aura.cc", 1930 "renderer_host/render_widget_host_view_aura.cc",
1935 "renderer_host/render_widget_host_view_aura.h", 1931 "renderer_host/render_widget_host_view_aura.h",
1936 "renderer_host/ui_events_helper.cc", 1932 "renderer_host/ui_events_helper.cc",
1937 "renderer_host/ui_events_helper.h", 1933 "renderer_host/ui_events_helper.h",
1938 "web_contents/aura/gesture_nav_simple.cc", 1934 "web_contents/aura/gesture_nav_simple.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 "compositor/software_output_device_mac.mm", 1976 "compositor/software_output_device_mac.mm",
1981 "compositor/software_output_device_ozone.cc", 1977 "compositor/software_output_device_ozone.cc",
1982 "compositor/software_output_device_ozone.h", 1978 "compositor/software_output_device_ozone.h",
1983 "compositor/software_output_device_win.cc", 1979 "compositor/software_output_device_win.cc",
1984 "compositor/software_output_device_win.h", 1980 "compositor/software_output_device_win.h",
1985 "compositor/software_output_device_x11.cc", 1981 "compositor/software_output_device_x11.cc",
1986 "compositor/software_output_device_x11.h", 1982 "compositor/software_output_device_x11.h",
1987 "context_factory.cc", 1983 "context_factory.cc",
1988 "renderer_host/browser_compositor_view_mac.h", 1984 "renderer_host/browser_compositor_view_mac.h",
1989 "renderer_host/browser_compositor_view_mac.mm", 1985 "renderer_host/browser_compositor_view_mac.mm",
1986 "renderer_host/compositor_resize_lock.cc",
1987 "renderer_host/compositor_resize_lock.h",
1990 "renderer_host/delegated_frame_host.cc", 1988 "renderer_host/delegated_frame_host.cc",
1991 "renderer_host/delegated_frame_host.h", 1989 "renderer_host/delegated_frame_host.h",
1992 "renderer_host/resize_lock.cc",
1993 "renderer_host/resize_lock.h",
1994 ] 1990 ]
1995 if (enable_vulkan) { 1991 if (enable_vulkan) {
1996 sources += [ 1992 sources += [
1997 "compositor/vulkan_browser_compositor_output_surface.cc", 1993 "compositor/vulkan_browser_compositor_output_surface.cc",
1998 "compositor/vulkan_browser_compositor_output_surface.h", 1994 "compositor/vulkan_browser_compositor_output_surface.h",
1999 ] 1995 ]
2000 } 1996 }
2001 if (!use_x11) { 1997 if (!use_x11) {
2002 sources -= [ 1998 sources -= [
2003 "compositor/software_output_device_x11.cc", 1999 "compositor/software_output_device_x11.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
2051 if (!is_component_build) { 2047 if (!is_component_build) {
2052 public_deps = [ 2048 public_deps = [
2053 ":browser", 2049 ":browser",
2054 ] 2050 ]
2055 } else { 2051 } else {
2056 public_deps = [ 2052 public_deps = [
2057 "//third_party/leveldatabase", 2053 "//third_party/leveldatabase",
2058 ] 2054 ]
2059 } 2055 }
2060 } 2056 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/browser_compositor_view_mac.h » ('j') | ui/compositor/compositor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698