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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 388 |
389 if (use_aura) { | 389 if (use_aura) { |
390 deps += [ | 390 deps += [ |
391 "//components/bitmap_uploader", | 391 "//components/bitmap_uploader", |
392 "//components/mus/common:mus_common", | 392 "//components/mus/common:mus_common", |
393 "//components/mus/public/cpp", | 393 "//components/mus/public/cpp", |
394 "//components/mus/public/interfaces", | 394 "//components/mus/public/interfaces", |
395 "//ui/aura", | 395 "//ui/aura", |
396 "//ui/aura_extra", | 396 "//ui/aura_extra", |
397 "//ui/strings", | 397 "//ui/strings", |
| 398 "//ui/views/mus", |
398 "//ui/wm", | 399 "//ui/wm", |
399 ] | 400 ] |
400 sources += [ | 401 sources += [ |
| 402 "compositor/mus_browser_compositor_output_surface.cc", |
| 403 "compositor/mus_browser_compositor_output_surface.h", |
401 "compositor/software_output_device_mus.cc", | 404 "compositor/software_output_device_mus.cc", |
402 "compositor/software_output_device_mus.h", | 405 "compositor/software_output_device_mus.h", |
403 "renderer_host/render_widget_host_view_mus.cc", | 406 "renderer_host/render_widget_host_view_mus.cc", |
404 "renderer_host/render_widget_host_view_mus.h", | 407 "renderer_host/render_widget_host_view_mus.h", |
405 "web_contents/web_contents_view_mus.cc", | 408 "web_contents/web_contents_view_mus.cc", |
406 "web_contents/web_contents_view_mus.h", | 409 "web_contents/web_contents_view_mus.h", |
407 ] | 410 ] |
408 if (toolkit_views) { | 411 if (toolkit_views) { |
409 defines += [ "MOJO_RUNNER_CLIENT" ] | 412 defines += [ "MOJO_RUNNER_CLIENT" ] |
410 } | 413 } |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 if (!is_component_build) { | 521 if (!is_component_build) { |
519 public_deps = [ | 522 public_deps = [ |
520 ":browser", | 523 ":browser", |
521 ] | 524 ] |
522 } else { | 525 } else { |
523 public_deps = [ | 526 public_deps = [ |
524 "//third_party/leveldatabase", | 527 "//third_party/leveldatabase", |
525 ] | 528 ] |
526 } | 529 } |
527 } | 530 } |
OLD | NEW |