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

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

Issue 1649933002: [Chromecast] Hook up mojo media pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed gn check Created 4 years, 10 months 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
« no previous file with comments | « chromecast/media/mojo/cast_mojo_media_client.cc ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 } 524 }
525 525
526 if (is_linux) { 526 if (is_linux) {
527 deps += [ "//third_party/boringssl" ] 527 deps += [ "//third_party/boringssl" ]
528 } 528 }
529 529
530 if (enable_mojo_media != "none") { 530 if (enable_mojo_media != "none") {
531 configs += [ "//media/mojo/services:enable_mojo_media_config" ] 531 configs += [ "//media/mojo/services:enable_mojo_media_config" ]
532 } 532 }
533 533
534 if (enable_mojo_media == "browser") {
535 deps += [ "//media/mojo/services:application" ]
536 }
537
538 if (enable_webvr) { 534 if (enable_webvr) {
539 sources += [ 535 sources += [
540 "vr/vr_device.cc", 536 "vr/vr_device.cc",
541 "vr/vr_device.h", 537 "vr/vr_device.h",
542 "vr/vr_device_manager.cc", 538 "vr/vr_device_manager.cc",
543 "vr/vr_device_manager.h", 539 "vr/vr_device_manager.h",
544 "vr/vr_device_provider.h", 540 "vr/vr_device_provider.h",
545 ] 541 ]
546 } 542 }
547 543
548 if (enable_webvr && is_android) { 544 if (enable_webvr && is_android) {
549 sources += [ 545 sources += [
550 "vr/android/cardboard/cardboard_vr_device.cc", 546 "vr/android/cardboard/cardboard_vr_device.cc",
551 "vr/android/cardboard/cardboard_vr_device.h", 547 "vr/android/cardboard/cardboard_vr_device.h",
552 "vr/android/cardboard/cardboard_vr_device_provider.cc", 548 "vr/android/cardboard/cardboard_vr_device_provider.cc",
553 "vr/android/cardboard/cardboard_vr_device_provider.h", 549 "vr/android/cardboard/cardboard_vr_device_provider.h",
554 ] 550 ]
555 } 551 }
556 } 552 }
OLDNEW
« no previous file with comments | « chromecast/media/mojo/cast_mojo_media_client.cc ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698