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

Side by Side Diff: ppapi/c/BUILD.gn

Issue 2755613002: Support audio output device enumeration and selection in PPAPI (Closed)
Patch Set: Should not include local change to ppapi/generators/idl_outfile.py Created 3 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # These are just headers. 5 # These are just headers.
6 source_set("c") { 6 source_set("c") {
7 sources = [ 7 sources = [
8 "pp_array_output.h", 8 "pp_array_output.h",
9 "pp_bool.h", 9 "pp_bool.h",
10 "pp_codecs.h", 10 "pp_codecs.h",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "ppp.h", 73 "ppp.h",
74 "ppp_graphics_3d.h", 74 "ppp_graphics_3d.h",
75 "ppp_input_event.h", 75 "ppp_input_event.h",
76 "ppp_instance.h", 76 "ppp_instance.h",
77 "ppp_messaging.h", 77 "ppp_messaging.h",
78 "ppp_mouse_lock.h", 78 "ppp_mouse_lock.h",
79 79
80 # Dev interfaces. 80 # Dev interfaces.
81 "dev/pp_cursor_type_dev.h", 81 "dev/pp_cursor_type_dev.h",
82 "dev/pp_video_dev.h", 82 "dev/pp_video_dev.h",
83 "dev/ppb_audio_input_dev.h",
84 "dev/ppb_audio_output_dev.h",
83 "dev/ppb_buffer_dev.h", 85 "dev/ppb_buffer_dev.h",
84 "dev/ppb_char_set_dev.h", 86 "dev/ppb_char_set_dev.h",
87 "dev/ppb_crypto_dev.h",
85 "dev/ppb_cursor_control_dev.h", 88 "dev/ppb_cursor_control_dev.h",
86 "dev/ppb_device_ref_dev.h", 89 "dev/ppb_device_ref_dev.h",
87 "dev/ppb_file_chooser_dev.h", 90 "dev/ppb_file_chooser_dev.h",
91 "dev/ppb_gles_chromium_texture_mapping_dev.h",
88 "dev/ppb_ime_input_event_dev.h", 92 "dev/ppb_ime_input_event_dev.h",
89 "dev/ppb_memory_dev.h", 93 "dev/ppb_memory_dev.h",
94 "dev/ppb_opengles2ext_dev.h",
95 "dev/ppb_printing_dev.h",
bbudge 2017/03/23 18:05:45 duplicate
Xing 2017/03/29 21:14:32 Done.
90 "dev/ppb_printing_dev.h", 96 "dev/ppb_printing_dev.h",
91 "dev/ppb_text_input_dev.h", 97 "dev/ppb_text_input_dev.h",
98 "dev/ppb_trace_event_dev.h",
92 "dev/ppb_truetype_font_dev.h", 99 "dev/ppb_truetype_font_dev.h",
93 "dev/ppb_url_util_dev.h", 100 "dev/ppb_url_util_dev.h",
101 "dev/ppb_video_capture_dev.h",
94 "dev/ppb_video_decoder_dev.h", 102 "dev/ppb_video_decoder_dev.h",
103 "dev/ppb_view_dev.h",
95 "dev/ppp_network_state_dev.h", 104 "dev/ppp_network_state_dev.h",
105 "dev/ppp_printing_dev.h",
96 "dev/ppp_text_input_dev.h", 106 "dev/ppp_text_input_dev.h",
107 "dev/ppp_video_capture_dev.h",
97 "dev/ppp_video_decoder_dev.h", 108 "dev/ppp_video_decoder_dev.h",
98 109
99 # Private interfaces. 110 # Private interfaces.
100 "private/pp_file_handle.h", 111 "private/pp_file_handle.h",
101 "private/pp_private_font_charset.h", 112 "private/pp_private_font_charset.h",
102 "private/pp_video_frame_private.h", 113 "private/pp_video_frame_private.h",
103 "private/ppb_camera_capabilities_private.h", 114 "private/ppb_camera_capabilities_private.h",
104 "private/ppb_camera_device_private.h", 115 "private/ppb_camera_device_private.h",
105 "private/ppb_content_decryptor_private.h", 116 "private/ppb_content_decryptor_private.h",
106 "private/ppb_ext_crx_file_system_private.h", 117 "private/ppb_ext_crx_file_system_private.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "dev/ppp_class_deprecated.h", 149 "dev/ppp_class_deprecated.h",
139 150
140 # Trusted interfaces. 151 # Trusted interfaces.
141 "trusted/ppb_broker_trusted.h", 152 "trusted/ppb_broker_trusted.h",
142 "trusted/ppb_browser_font_trusted.h", 153 "trusted/ppb_browser_font_trusted.h",
143 "trusted/ppb_file_chooser_trusted.h", 154 "trusted/ppb_file_chooser_trusted.h",
144 "trusted/ppb_url_loader_trusted.h", 155 "trusted/ppb_url_loader_trusted.h",
145 "trusted/ppp_broker.h", 156 "trusted/ppp_broker.h",
146 ] 157 ]
147 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698