| 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("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "//services/ui/public/cpp", | 379 "//services/ui/public/cpp", |
| 380 "//services/ui/public/interfaces", | 380 "//services/ui/public/interfaces", |
| 381 "//ui/aura", | 381 "//ui/aura", |
| 382 "//ui/aura_extra", | 382 "//ui/aura_extra", |
| 383 "//ui/strings", | 383 "//ui/strings", |
| 384 "//ui/wm", | 384 "//ui/wm", |
| 385 ] | 385 ] |
| 386 sources += [ | 386 sources += [ |
| 387 "compositor/mus_browser_compositor_output_surface.cc", | 387 "compositor/mus_browser_compositor_output_surface.cc", |
| 388 "compositor/mus_browser_compositor_output_surface.h", | 388 "compositor/mus_browser_compositor_output_surface.h", |
| 389 "compositor/software_output_device_mus.cc", | |
| 390 "compositor/software_output_device_mus.h", | |
| 391 "renderer_host/render_widget_host_view_mus.cc", | 389 "renderer_host/render_widget_host_view_mus.cc", |
| 392 "renderer_host/render_widget_host_view_mus.h", | 390 "renderer_host/render_widget_host_view_mus.h", |
| 393 "web_contents/web_contents_view_mus.cc", | 391 "web_contents/web_contents_view_mus.cc", |
| 394 "web_contents/web_contents_view_mus.h", | 392 "web_contents/web_contents_view_mus.h", |
| 395 ] | 393 ] |
| 396 } else { # Not aura. | 394 } else { # Not aura. |
| 397 sources -= [ | 395 sources -= [ |
| 398 "media/capture/cursor_renderer_aura.cc", | 396 "media/capture/cursor_renderer_aura.cc", |
| 399 "media/capture/cursor_renderer_aura.h", | 397 "media/capture/cursor_renderer_aura.h", |
| 400 "media/capture/window_activity_tracker_aura.cc", | 398 "media/capture/window_activity_tracker_aura.cc", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 if (!is_component_build) { | 509 if (!is_component_build) { |
| 512 public_deps = [ | 510 public_deps = [ |
| 513 ":browser", | 511 ":browser", |
| 514 ] | 512 ] |
| 515 } else { | 513 } else { |
| 516 public_deps = [ | 514 public_deps = [ |
| 517 "//third_party/leveldatabase", | 515 "//third_party/leveldatabase", |
| 518 ] | 516 ] |
| 519 } | 517 } |
| 520 } | 518 } |
| OLD | NEW |