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 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 } | 397 } |
398 | 398 |
399 if (use_aura) { | 399 if (use_aura) { |
400 deps += [ | 400 deps += [ |
401 "//components/bitmap_uploader", | 401 "//components/bitmap_uploader", |
402 "//components/mus/public/cpp", | 402 "//components/mus/public/cpp", |
403 "//components/mus/public/interfaces", | 403 "//components/mus/public/interfaces", |
404 "//ui/aura", | 404 "//ui/aura", |
405 "//ui/aura_extra", | 405 "//ui/aura_extra", |
406 "//ui/strings", | 406 "//ui/strings", |
407 "//ui/views/mus:for_component", | |
408 "//ui/wm", | 407 "//ui/wm", |
409 ] | 408 ] |
410 sources += [ | 409 sources += [ |
411 "compositor/software_output_device_mus.cc", | 410 "compositor/software_output_device_mus.cc", |
412 "compositor/software_output_device_mus.h", | 411 "compositor/software_output_device_mus.h", |
413 "renderer_host/render_widget_host_view_mus.cc", | 412 "renderer_host/render_widget_host_view_mus.cc", |
414 "renderer_host/render_widget_host_view_mus.h", | 413 "renderer_host/render_widget_host_view_mus.h", |
415 "web_contents/web_contents_view_mus.cc", | 414 "web_contents/web_contents_view_mus.cc", |
416 "web_contents/web_contents_view_mus.h", | 415 "web_contents/web_contents_view_mus.h", |
417 ] | 416 ] |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 if (!is_component_build) { | 523 if (!is_component_build) { |
525 public_deps = [ | 524 public_deps = [ |
526 ":browser", | 525 ":browser", |
527 ] | 526 ] |
528 } else { | 527 } else { |
529 public_deps = [ | 528 public_deps = [ |
530 "//third_party/leveldatabase", | 529 "//third_party/leveldatabase", |
531 ] | 530 ] |
532 } | 531 } |
533 } | 532 } |
OLD | NEW |