Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: content/browser/BUILD.gn

Issue 1484403002: cast: Support for low-latency interactive mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cast streaming API tests Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 "web_contents/web_contents_view_mus.h", 440 "web_contents/web_contents_view_mus.h",
441 ] 441 ]
442 if (toolkit_views) { 442 if (toolkit_views) {
443 deps += [ "//ui/views/mus:for_component" ] 443 deps += [ "//ui/views/mus:for_component" ]
444 defines += [ "MOJO_RUNNER_CLIENT" ] 444 defines += [ "MOJO_RUNNER_CLIENT" ]
445 } 445 }
446 } else { # Not aura. 446 } else { # Not aura.
447 sources -= [ 447 sources -= [
448 "media/capture/cursor_renderer_aura.cc", 448 "media/capture/cursor_renderer_aura.cc",
449 "media/capture/cursor_renderer_aura.h", 449 "media/capture/cursor_renderer_aura.h",
450 "media/capture/window_activity_tracker_aura.cc",
451 "media/capture/window_activity_tracker_aura.h",
450 "renderer_host/compositor_resize_lock_aura.cc", 452 "renderer_host/compositor_resize_lock_aura.cc",
451 "renderer_host/compositor_resize_lock_aura.h", 453 "renderer_host/compositor_resize_lock_aura.h",
452 "renderer_host/input/synthetic_gesture_target_aura.cc", 454 "renderer_host/input/synthetic_gesture_target_aura.cc",
453 "renderer_host/input/synthetic_gesture_target_aura.h", 455 "renderer_host/input/synthetic_gesture_target_aura.h",
454 "renderer_host/input/touch_selection_controller_client_aura.cc", 456 "renderer_host/input/touch_selection_controller_client_aura.cc",
455 "renderer_host/input/touch_selection_controller_client_aura.h", 457 "renderer_host/input/touch_selection_controller_client_aura.h",
456 "renderer_host/native_web_keyboard_event_aura.cc", 458 "renderer_host/native_web_keyboard_event_aura.cc",
457 "renderer_host/render_widget_host_view_aura.cc", 459 "renderer_host/render_widget_host_view_aura.cc",
458 "renderer_host/render_widget_host_view_aura.h", 460 "renderer_host/render_widget_host_view_aura.h",
459 "renderer_host/ui_events_helper.cc", 461 "renderer_host/ui_events_helper.cc",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 548
547 if (enable_webvr && is_android) { 549 if (enable_webvr && is_android) {
548 sources += [ 550 sources += [
549 "vr/android/cardboard/cardboard_vr_device.cc", 551 "vr/android/cardboard/cardboard_vr_device.cc",
550 "vr/android/cardboard/cardboard_vr_device.h", 552 "vr/android/cardboard/cardboard_vr_device.h",
551 "vr/android/cardboard/cardboard_vr_device_provider.cc", 553 "vr/android/cardboard/cardboard_vr_device_provider.cc",
552 "vr/android/cardboard/cardboard_vr_device_provider.h", 554 "vr/android/cardboard/cardboard_vr_device_provider.h",
553 ] 555 ]
554 } 556 }
555 } 557 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698