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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 "web_contents/web_contents_view_mus.h", | 441 "web_contents/web_contents_view_mus.h", |
442 ] | 442 ] |
443 if (toolkit_views) { | 443 if (toolkit_views) { |
444 deps += [ "//ui/views/mus:for_component" ] | 444 deps += [ "//ui/views/mus:for_component" ] |
445 defines += [ "MOJO_RUNNER_CLIENT" ] | 445 defines += [ "MOJO_RUNNER_CLIENT" ] |
446 } | 446 } |
447 } else { # Not aura. | 447 } else { # Not aura. |
448 sources -= [ | 448 sources -= [ |
449 "media/capture/cursor_renderer_aura.cc", | 449 "media/capture/cursor_renderer_aura.cc", |
450 "media/capture/cursor_renderer_aura.h", | 450 "media/capture/cursor_renderer_aura.h", |
| 451 "media/capture/window_activity_tracker_aura.cc", |
| 452 "media/capture/window_activity_tracker_aura.h", |
451 "renderer_host/compositor_resize_lock_aura.cc", | 453 "renderer_host/compositor_resize_lock_aura.cc", |
452 "renderer_host/compositor_resize_lock_aura.h", | 454 "renderer_host/compositor_resize_lock_aura.h", |
453 "renderer_host/input/synthetic_gesture_target_aura.cc", | 455 "renderer_host/input/synthetic_gesture_target_aura.cc", |
454 "renderer_host/input/synthetic_gesture_target_aura.h", | 456 "renderer_host/input/synthetic_gesture_target_aura.h", |
455 "renderer_host/input/touch_selection_controller_client_aura.cc", | 457 "renderer_host/input/touch_selection_controller_client_aura.cc", |
456 "renderer_host/input/touch_selection_controller_client_aura.h", | 458 "renderer_host/input/touch_selection_controller_client_aura.h", |
457 "renderer_host/native_web_keyboard_event_aura.cc", | 459 "renderer_host/native_web_keyboard_event_aura.cc", |
458 "renderer_host/render_widget_host_view_aura.cc", | 460 "renderer_host/render_widget_host_view_aura.cc", |
459 "renderer_host/render_widget_host_view_aura.h", | 461 "renderer_host/render_widget_host_view_aura.h", |
460 "renderer_host/ui_events_helper.cc", | 462 "renderer_host/ui_events_helper.cc", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 | 549 |
548 if (enable_webvr && is_android) { | 550 if (enable_webvr && is_android) { |
549 sources += [ | 551 sources += [ |
550 "vr/android/cardboard/cardboard_vr_device.cc", | 552 "vr/android/cardboard/cardboard_vr_device.cc", |
551 "vr/android/cardboard/cardboard_vr_device.h", | 553 "vr/android/cardboard/cardboard_vr_device.h", |
552 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 554 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
553 "vr/android/cardboard/cardboard_vr_device_provider.h", | 555 "vr/android/cardboard/cardboard_vr_device_provider.h", |
554 ] | 556 ] |
555 } | 557 } |
556 } | 558 } |
OLD | NEW |