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

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

Issue 2317333002: Refactor EventHandler out of RenderWidgetHostViewAura (Closed)
Patch Set: y Created 4 years, 2 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after
1787 "//services/ui/public/cpp", 1787 "//services/ui/public/cpp",
1788 "//services/ui/public/interfaces", 1788 "//services/ui/public/interfaces",
1789 "//ui/aura", 1789 "//ui/aura",
1790 "//ui/aura_extra", 1790 "//ui/aura_extra",
1791 "//ui/strings", 1791 "//ui/strings",
1792 "//ui/wm", 1792 "//ui/wm",
1793 ] 1793 ]
1794 sources += [ 1794 sources += [
1795 "compositor/mus_browser_compositor_output_surface.cc", 1795 "compositor/mus_browser_compositor_output_surface.cc",
1796 "compositor/mus_browser_compositor_output_surface.h", 1796 "compositor/mus_browser_compositor_output_surface.h",
1797 "renderer_host/render_widget_host_view_event_handler.cc",
1798 "renderer_host/render_widget_host_view_event_handler.h",
1797 "renderer_host/render_widget_host_view_mus.cc", 1799 "renderer_host/render_widget_host_view_mus.cc",
1798 "renderer_host/render_widget_host_view_mus.h", 1800 "renderer_host/render_widget_host_view_mus.h",
1799 "web_contents/web_contents_view_mus.cc", 1801 "web_contents/web_contents_view_mus.cc",
1800 "web_contents/web_contents_view_mus.h", 1802 "web_contents/web_contents_view_mus.h",
1801 ] 1803 ]
1802 } else { # Not aura. 1804 } else { # Not aura.
1803 sources -= [ 1805 sources -= [
1804 "media/capture/cursor_renderer_aura.cc", 1806 "media/capture/cursor_renderer_aura.cc",
1805 "media/capture/cursor_renderer_aura.h", 1807 "media/capture/cursor_renderer_aura.h",
1806 "media/capture/window_activity_tracker_aura.cc", 1808 "media/capture/window_activity_tracker_aura.cc",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1943 if (!is_component_build) { 1945 if (!is_component_build) {
1944 public_deps = [ 1946 public_deps = [
1945 ":browser", 1947 ":browser",
1946 ] 1948 ]
1947 } else { 1949 } else {
1948 public_deps = [ 1950 public_deps = [
1949 "//third_party/leveldatabase", 1951 "//third_party/leveldatabase",
1950 ] 1952 ]
1951 } 1953 }
1952 } 1954 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698