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