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

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

Issue 2755613002: Support audio output device enumeration and selection in PPAPI (Closed)
Patch Set: Fix issues from previous review, Rebase. Created 3 years, 8 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
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.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("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//content/common/features.gni") 9 import("//content/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 "pepper/host_var_tracker.cc", 780 "pepper/host_var_tracker.cc",
781 "pepper/host_var_tracker.h", 781 "pepper/host_var_tracker.h",
782 "pepper/message_channel.cc", 782 "pepper/message_channel.cc",
783 "pepper/message_channel.h", 783 "pepper/message_channel.h",
784 "pepper/pepper_audio_controller.cc", 784 "pepper/pepper_audio_controller.cc",
785 "pepper/pepper_audio_controller.h", 785 "pepper/pepper_audio_controller.h",
786 "pepper/pepper_audio_encoder_host.cc", 786 "pepper/pepper_audio_encoder_host.cc",
787 "pepper/pepper_audio_encoder_host.h", 787 "pepper/pepper_audio_encoder_host.h",
788 "pepper/pepper_audio_input_host.cc", 788 "pepper/pepper_audio_input_host.cc",
789 "pepper/pepper_audio_input_host.h", 789 "pepper/pepper_audio_input_host.h",
790 "pepper/pepper_audio_output_host.cc",
791 "pepper/pepper_audio_output_host.h",
790 "pepper/pepper_broker.cc", 792 "pepper/pepper_broker.cc",
791 "pepper/pepper_broker.h", 793 "pepper/pepper_broker.h",
792 "pepper/pepper_browser_connection.cc", 794 "pepper/pepper_browser_connection.cc",
793 "pepper/pepper_browser_connection.h", 795 "pepper/pepper_browser_connection.h",
794 "pepper/pepper_camera_device_host.cc", 796 "pepper/pepper_camera_device_host.cc",
795 "pepper/pepper_camera_device_host.h", 797 "pepper/pepper_camera_device_host.h",
796 "pepper/pepper_compositor_host.cc", 798 "pepper/pepper_compositor_host.cc",
797 "pepper/pepper_compositor_host.h", 799 "pepper/pepper_compositor_host.h",
798 "pepper/pepper_device_enumeration_host_helper.cc", 800 "pepper/pepper_device_enumeration_host_helper.cc",
799 "pepper/pepper_device_enumeration_host_helper.h", 801 "pepper/pepper_device_enumeration_host_helper.h",
(...skipping 10 matching lines...) Expand all
810 "pepper/pepper_in_process_resource_creation.cc", 812 "pepper/pepper_in_process_resource_creation.cc",
811 "pepper/pepper_in_process_resource_creation.h", 813 "pepper/pepper_in_process_resource_creation.h",
812 "pepper/pepper_in_process_router.cc", 814 "pepper/pepper_in_process_router.cc",
813 "pepper/pepper_in_process_router.h", 815 "pepper/pepper_in_process_router.h",
814 "pepper/pepper_media_device_manager.cc", 816 "pepper/pepper_media_device_manager.cc",
815 "pepper/pepper_media_device_manager.h", 817 "pepper/pepper_media_device_manager.h",
816 "pepper/pepper_platform_audio_input.cc", 818 "pepper/pepper_platform_audio_input.cc",
817 "pepper/pepper_platform_audio_input.h", 819 "pepper/pepper_platform_audio_input.h",
818 "pepper/pepper_platform_audio_output.cc", 820 "pepper/pepper_platform_audio_output.cc",
819 "pepper/pepper_platform_audio_output.h", 821 "pepper/pepper_platform_audio_output.h",
822 "pepper/pepper_platform_audio_output_dev.cc",
823 "pepper/pepper_platform_audio_output_dev.h",
820 "pepper/pepper_platform_camera_device.cc", 824 "pepper/pepper_platform_camera_device.cc",
821 "pepper/pepper_platform_camera_device.h", 825 "pepper/pepper_platform_camera_device.h",
822 "pepper/pepper_platform_video_capture.cc", 826 "pepper/pepper_platform_video_capture.cc",
823 "pepper/pepper_platform_video_capture.h", 827 "pepper/pepper_platform_video_capture.h",
824 "pepper/pepper_plugin_instance_impl.cc", 828 "pepper/pepper_plugin_instance_impl.cc",
825 "pepper/pepper_plugin_instance_impl.h", 829 "pepper/pepper_plugin_instance_impl.h",
826 "pepper/pepper_plugin_instance_metrics.cc", 830 "pepper/pepper_plugin_instance_metrics.cc",
827 "pepper/pepper_plugin_instance_metrics.h", 831 "pepper/pepper_plugin_instance_metrics.h",
828 "pepper/pepper_plugin_registry.cc", 832 "pepper/pepper_plugin_registry.cc",
829 "pepper/pepper_plugin_registry.h", 833 "pepper/pepper_plugin_registry.h",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 # For the defines in mojo_media_config. 960 # For the defines in mojo_media_config.
957 public_configs = [ "//media/mojo/services:mojo_media_config" ] 961 public_configs = [ "//media/mojo/services:mojo_media_config" ]
958 } 962 }
959 963
960 if (!is_component_build) { 964 if (!is_component_build) {
961 public_deps = [ 965 public_deps = [
962 ":renderer", 966 ":renderer",
963 ] 967 ]
964 } 968 }
965 } 969 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698