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