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