| 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 "//components/bitmap_uploader", | 425 "//components/bitmap_uploader", |
| 426 "//ui/aura", | 426 "//ui/aura", |
| 427 "//ui/aura_extra", | 427 "//ui/aura_extra", |
| 428 "//ui/strings", | 428 "//ui/strings", |
| 429 "//ui/views/mus:for_component", | 429 "//ui/views/mus:for_component", |
| 430 "//ui/wm", | 430 "//ui/wm", |
| 431 ] | 431 ] |
| 432 sources += [ | 432 sources += [ |
| 433 "compositor/software_output_device_mus.cc", | 433 "compositor/software_output_device_mus.cc", |
| 434 "compositor/software_output_device_mus.h", | 434 "compositor/software_output_device_mus.h", |
| 435 "frame_host/render_widget_host_view_mus.cc", | 435 "renderer_host/render_widget_host_view_mus.cc", |
| 436 "frame_host/render_widget_host_view_mus.h", | 436 "renderer_host/render_widget_host_view_mus.h", |
| 437 "web_contents/web_contents_view_mus.cc", | 437 "web_contents/web_contents_view_mus.cc", |
| 438 "web_contents/web_contents_view_mus.h", | 438 "web_contents/web_contents_view_mus.h", |
| 439 ] | 439 ] |
| 440 defines += [ "MOJO_RUNNER_CLIENT" ] | 440 defines += [ "MOJO_RUNNER_CLIENT" ] |
| 441 } else { # Not aura. | 441 } else { # Not aura. |
| 442 sources -= [ | 442 sources -= [ |
| 443 "media/capture/cursor_renderer_aura.cc", | 443 "media/capture/cursor_renderer_aura.cc", |
| 444 "media/capture/cursor_renderer_aura.h", | 444 "media/capture/cursor_renderer_aura.h", |
| 445 "renderer_host/compositor_resize_lock_aura.cc", | 445 "renderer_host/compositor_resize_lock_aura.cc", |
| 446 "renderer_host/compositor_resize_lock_aura.h", | 446 "renderer_host/compositor_resize_lock_aura.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 | 541 |
| 542 if (enable_webvr && is_android) { | 542 if (enable_webvr && is_android) { |
| 543 sources += [ | 543 sources += [ |
| 544 "vr/android/cardboard/cardboard_vr_device.cc", | 544 "vr/android/cardboard/cardboard_vr_device.cc", |
| 545 "vr/android/cardboard/cardboard_vr_device.h", | 545 "vr/android/cardboard/cardboard_vr_device.h", |
| 546 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 546 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 547 "vr/android/cardboard/cardboard_vr_device_provider.h", | 547 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 548 ] | 548 ] |
| 549 } | 549 } |
| 550 } | 550 } |
| OLD | NEW |