| 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("//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 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1786 "//services/ui/public/cpp", | 1786 "//services/ui/public/cpp", |
| 1787 "//services/ui/public/interfaces", | 1787 "//services/ui/public/interfaces", |
| 1788 "//ui/aura", | 1788 "//ui/aura", |
| 1789 "//ui/aura_extra", | 1789 "//ui/aura_extra", |
| 1790 "//ui/strings", | 1790 "//ui/strings", |
| 1791 "//ui/wm", | 1791 "//ui/wm", |
| 1792 ] | 1792 ] |
| 1793 sources += [ | 1793 sources += [ |
| 1794 "compositor/mus_browser_compositor_output_surface.cc", | 1794 "compositor/mus_browser_compositor_output_surface.cc", |
| 1795 "compositor/mus_browser_compositor_output_surface.h", | 1795 "compositor/mus_browser_compositor_output_surface.h", |
| 1796 "renderer_host/render_widget_host_view_event_handler.cc", |
| 1797 "renderer_host/render_widget_host_view_event_handler.h", |
| 1796 "renderer_host/render_widget_host_view_mus.cc", | 1798 "renderer_host/render_widget_host_view_mus.cc", |
| 1797 "renderer_host/render_widget_host_view_mus.h", | 1799 "renderer_host/render_widget_host_view_mus.h", |
| 1798 "web_contents/web_contents_view_mus.cc", | 1800 "web_contents/web_contents_view_mus.cc", |
| 1799 "web_contents/web_contents_view_mus.h", | 1801 "web_contents/web_contents_view_mus.h", |
| 1800 ] | 1802 ] |
| 1801 } else { # Not aura. | 1803 } else { # Not aura. |
| 1802 sources -= [ | 1804 sources -= [ |
| 1803 "media/capture/cursor_renderer_aura.cc", | 1805 "media/capture/cursor_renderer_aura.cc", |
| 1804 "media/capture/cursor_renderer_aura.h", | 1806 "media/capture/cursor_renderer_aura.h", |
| 1805 "media/capture/window_activity_tracker_aura.cc", | 1807 "media/capture/window_activity_tracker_aura.cc", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1939 if (!is_component_build) { | 1941 if (!is_component_build) { |
| 1940 public_deps = [ | 1942 public_deps = [ |
| 1941 ":browser", | 1943 ":browser", |
| 1942 ] | 1944 ] |
| 1943 } else { | 1945 } else { |
| 1944 public_deps = [ | 1946 public_deps = [ |
| 1945 "//third_party/leveldatabase", | 1947 "//third_party/leveldatabase", |
| 1946 ] | 1948 ] |
| 1947 } | 1949 } |
| 1948 } | 1950 } |
| OLD | NEW |