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

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

Issue 1320453003: media: Support MojoMediaApplication in GPU process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing import Created 5 years, 2 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 | « no previous file | content/browser/mojo/mojo_shell_context.cc » ('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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 "media/cdm/browser_cdm_manager.h", 478 "media/cdm/browser_cdm_manager.h",
479 "media/media_web_contents_observer.cc", 479 "media/media_web_contents_observer.cc",
480 "media/media_web_contents_observer.h", 480 "media/media_web_contents_observer.h",
481 ] 481 ]
482 } 482 }
483 483
484 if (is_linux) { 484 if (is_linux) {
485 deps += [ "//third_party/boringssl" ] 485 deps += [ "//third_party/boringssl" ]
486 } 486 }
487 487
488 if (enable_mojo_media != "none") {
489 configs += [ "//media/mojo/services:enable_mojo_media_config" ]
490 }
491
488 if (enable_mojo_media == "browser") { 492 if (enable_mojo_media == "browser") {
489 deps += [ "//media/mojo/services:application" ] 493 deps += [ "//media/mojo/services:application" ]
490 } 494 }
491 495
492 if (enable_webvr) { 496 if (enable_webvr) {
493 sources += [ 497 sources += [
494 "vr/vr_device.cc", 498 "vr/vr_device.cc",
495 "vr/vr_device.h", 499 "vr/vr_device.h",
496 "vr/vr_device_manager.cc", 500 "vr/vr_device_manager.cc",
497 "vr/vr_device_manager.h", 501 "vr/vr_device_manager.h",
498 "vr/vr_device_provider.h", 502 "vr/vr_device_provider.h",
499 ] 503 ]
500 } 504 }
501 505
502 if (enable_webvr && is_android) { 506 if (enable_webvr && is_android) {
503 sources += [ 507 sources += [
504 "vr/android/cardboard/cardboard_vr_device.cc", 508 "vr/android/cardboard/cardboard_vr_device.cc",
505 "vr/android/cardboard/cardboard_vr_device.h", 509 "vr/android/cardboard/cardboard_vr_device.h",
506 "vr/android/cardboard/cardboard_vr_device_provider.cc", 510 "vr/android/cardboard/cardboard_vr_device_provider.cc",
507 "vr/android/cardboard/cardboard_vr_device_provider.h", 511 "vr/android/cardboard/cardboard_vr_device_provider.h",
508 ] 512 ]
509 } 513 }
510 } 514 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/mojo/mojo_shell_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698