| 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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1763 "//services/ui/public/cpp", | 1763 "//services/ui/public/cpp", |
| 1764 "//services/ui/public/interfaces", | 1764 "//services/ui/public/interfaces", |
| 1765 "//ui/aura", | 1765 "//ui/aura", |
| 1766 "//ui/aura_extra", | 1766 "//ui/aura_extra", |
| 1767 "//ui/strings", | 1767 "//ui/strings", |
| 1768 "//ui/wm", | 1768 "//ui/wm", |
| 1769 ] | 1769 ] |
| 1770 sources += [ | 1770 sources += [ |
| 1771 "compositor/mus_browser_compositor_output_surface.cc", | 1771 "compositor/mus_browser_compositor_output_surface.cc", |
| 1772 "compositor/mus_browser_compositor_output_surface.h", | 1772 "compositor/mus_browser_compositor_output_surface.h", |
| 1773 "renderer_host/render_widget_host_view_event_handler.cc", |
| 1774 "renderer_host/render_widget_host_view_event_handler.h", |
| 1773 "renderer_host/render_widget_host_view_mus.cc", | 1775 "renderer_host/render_widget_host_view_mus.cc", |
| 1774 "renderer_host/render_widget_host_view_mus.h", | 1776 "renderer_host/render_widget_host_view_mus.h", |
| 1775 "web_contents/web_contents_view_mus.cc", | 1777 "web_contents/web_contents_view_mus.cc", |
| 1776 "web_contents/web_contents_view_mus.h", | 1778 "web_contents/web_contents_view_mus.h", |
| 1777 ] | 1779 ] |
| 1778 } else { # Not aura. | 1780 } else { # Not aura. |
| 1779 sources -= [ | 1781 sources -= [ |
| 1780 "media/capture/cursor_renderer_aura.cc", | 1782 "media/capture/cursor_renderer_aura.cc", |
| 1781 "media/capture/cursor_renderer_aura.h", | 1783 "media/capture/cursor_renderer_aura.h", |
| 1782 "media/capture/window_activity_tracker_aura.cc", | 1784 "media/capture/window_activity_tracker_aura.cc", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1926 if (!is_component_build) { | 1928 if (!is_component_build) { |
| 1927 public_deps = [ | 1929 public_deps = [ |
| 1928 ":browser", | 1930 ":browser", |
| 1929 ] | 1931 ] |
| 1930 } else { | 1932 } else { |
| 1931 public_deps = [ | 1933 public_deps = [ |
| 1932 "//third_party/leveldatabase", | 1934 "//third_party/leveldatabase", |
| 1933 ] | 1935 ] |
| 1934 } | 1936 } |
| 1935 } | 1937 } |
| OLD | NEW |