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

Side by Side Diff: ppapi/ppapi.gyp

Issue 6281007: Remove dev/audio, dev/audio_config, and dev/audio_trusted... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/cpp/dev/audio_dev.cc ('k') | ppapi/tests/all_c_includes.h » ('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 (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../third_party/mesa/mesa.gypi', 7 '../third_party/mesa/mesa.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, # Use higher warning level. 10 'chromium_code': 1, # Use higher warning level.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'c/ppb_url_response_info.h', 63 'c/ppb_url_response_info.h',
64 'c/ppb_var.h', 64 'c/ppb_var.h',
65 'c/ppp.h', 65 'c/ppp.h',
66 'c/ppp_instance.h', 66 'c/ppp_instance.h',
67 67
68 # Dev interfaces. 68 # Dev interfaces.
69 'c/dev/pp_cursor_type_dev.h', 69 'c/dev/pp_cursor_type_dev.h',
70 'c/dev/pp_file_info_dev.h', 70 'c/dev/pp_file_info_dev.h',
71 'c/dev/pp_graphics_3d_dev.h', 71 'c/dev/pp_graphics_3d_dev.h',
72 'c/dev/pp_video_dev.h', 72 'c/dev/pp_video_dev.h',
73 'c/dev/ppb_audio_config_dev.h',
74 'c/dev/ppb_audio_dev.h',
75 'c/dev/ppb_audio_trusted_dev.h',
76 'c/dev/ppb_buffer_dev.h', 73 'c/dev/ppb_buffer_dev.h',
77 'c/dev/ppb_char_set_dev.h', 74 'c/dev/ppb_char_set_dev.h',
78 'c/dev/ppb_context_3d_dev.h', 75 'c/dev/ppb_context_3d_dev.h',
79 'c/dev/ppb_cursor_control_dev.h', 76 'c/dev/ppb_cursor_control_dev.h',
80 'c/dev/ppb_directory_reader_dev.h', 77 'c/dev/ppb_directory_reader_dev.h',
81 'c/dev/ppb_file_chooser_dev.h', 78 'c/dev/ppb_file_chooser_dev.h',
82 'c/dev/ppb_file_io_dev.h', 79 'c/dev/ppb_file_io_dev.h',
83 'c/dev/ppb_file_io_trusted_dev.h', 80 'c/dev/ppb_file_io_trusted_dev.h',
84 'c/dev/ppb_file_ref_dev.h', 81 'c/dev/ppb_file_ref_dev.h',
85 'c/dev/ppb_file_system_dev.h', 82 'c/dev/ppb_file_system_dev.h',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'cpp/url_loader.cc', 160 'cpp/url_loader.cc',
164 'cpp/url_loader.h', 161 'cpp/url_loader.h',
165 'cpp/url_request_info.cc', 162 'cpp/url_request_info.cc',
166 'cpp/url_request_info.h', 163 'cpp/url_request_info.h',
167 'cpp/url_response_info.cc', 164 'cpp/url_response_info.cc',
168 'cpp/url_response_info.h', 165 'cpp/url_response_info.h',
169 'cpp/var.cc', 166 'cpp/var.cc',
170 'cpp/var.h', 167 'cpp/var.h',
171 168
172 # Dev interfaces. 169 # Dev interfaces.
173 'cpp/dev/audio_config_dev.cc',
174 'cpp/dev/audio_config_dev.h',
175 'cpp/dev/audio_dev.cc',
176 'cpp/dev/audio_dev.h',
177 'cpp/dev/buffer_dev.cc', 170 'cpp/dev/buffer_dev.cc',
178 'cpp/dev/buffer_dev.h', 171 'cpp/dev/buffer_dev.h',
179 'cpp/dev/context_3d_dev.cc', 172 'cpp/dev/context_3d_dev.cc',
180 'cpp/dev/context_3d_dev.h', 173 'cpp/dev/context_3d_dev.h',
181 'cpp/dev/directory_entry_dev.cc', 174 'cpp/dev/directory_entry_dev.cc',
182 'cpp/dev/directory_entry_dev.h', 175 'cpp/dev/directory_entry_dev.h',
183 'cpp/dev/directory_reader_dev.cc', 176 'cpp/dev/directory_reader_dev.cc',
184 'cpp/dev/directory_reader_dev.h', 177 'cpp/dev/directory_reader_dev.h',
185 'cpp/dev/file_chooser_dev.cc', 178 'cpp/dev/file_chooser_dev.cc',
186 'cpp/dev/file_chooser_dev.h', 179 'cpp/dev/file_chooser_dev.h',
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 ['OS=="win"', { 680 ['OS=="win"', {
688 }], 681 }],
689 ['OS=="linux"', { 682 ['OS=="linux"', {
690 }], 683 }],
691 ['OS=="mac"', { 684 ['OS=="mac"', {
692 }] 685 }]
693 ], 686 ],
694 }, 687 },
695 ], 688 ],
696 } 689 }
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/audio_dev.cc ('k') | ppapi/tests/all_c_includes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698