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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 | 382 |
383 if (use_aura) { | 383 if (use_aura) { |
384 deps += [ | 384 deps += [ |
385 "//components/bitmap_uploader", | 385 "//components/bitmap_uploader", |
386 "//services/ui/common:mus_common", | 386 "//services/ui/common:mus_common", |
387 "//services/ui/public/cpp", | 387 "//services/ui/public/cpp", |
388 "//services/ui/public/interfaces", | 388 "//services/ui/public/interfaces", |
389 "//ui/aura", | 389 "//ui/aura", |
390 "//ui/aura_extra", | 390 "//ui/aura_extra", |
391 "//ui/strings", | 391 "//ui/strings", |
| 392 "//ui/views/mus", |
392 "//ui/wm", | 393 "//ui/wm", |
393 ] | 394 ] |
394 sources += [ | 395 sources += [ |
| 396 "compositor/mus_browser_compositor_output_surface.cc", |
| 397 "compositor/mus_browser_compositor_output_surface.h", |
395 "compositor/software_output_device_mus.cc", | 398 "compositor/software_output_device_mus.cc", |
396 "compositor/software_output_device_mus.h", | 399 "compositor/software_output_device_mus.h", |
397 "renderer_host/render_widget_host_view_mus.cc", | 400 "renderer_host/render_widget_host_view_mus.cc", |
398 "renderer_host/render_widget_host_view_mus.h", | 401 "renderer_host/render_widget_host_view_mus.h", |
399 "web_contents/web_contents_view_mus.cc", | 402 "web_contents/web_contents_view_mus.cc", |
400 "web_contents/web_contents_view_mus.h", | 403 "web_contents/web_contents_view_mus.h", |
401 ] | 404 ] |
402 if (toolkit_views) { | 405 if (toolkit_views) { |
403 defines += [ "MOJO_RUNNER_CLIENT" ] | 406 defines += [ "MOJO_RUNNER_CLIENT" ] |
404 } | 407 } |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 if (!is_component_build) { | 515 if (!is_component_build) { |
513 public_deps = [ | 516 public_deps = [ |
514 ":browser", | 517 ":browser", |
515 ] | 518 ] |
516 } else { | 519 } else { |
517 public_deps = [ | 520 public_deps = [ |
518 "//third_party/leveldatabase", | 521 "//third_party/leveldatabase", |
519 ] | 522 ] |
520 } | 523 } |
521 } | 524 } |
OLD | NEW |