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

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 14784002: Move DirectoryReader::ReadEntries to FileRef::ReadDirectoryEntries (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebased Created 7 years, 7 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 | « ppapi/ppapi_shared.gypi ('k') | ppapi/proxy/directory_reader_resource.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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'c_source_files': [ 7 'c_source_files': [
8 'c/pp_array_output.h', 8 'c/pp_array_output.h',
9 'c/pp_bool.h', 9 'c/pp_bool.h',
10 'c/pp_completion_callback.h', 10 'c/pp_completion_callback.h',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'c/ppp_messaging.h', 57 'c/ppp_messaging.h',
58 'c/ppp_mouse_lock.h', 58 'c/ppp_mouse_lock.h',
59 59
60 # Dev interfaces. 60 # Dev interfaces.
61 'c/dev/pp_cursor_type_dev.h', 61 'c/dev/pp_cursor_type_dev.h',
62 'c/dev/pp_video_dev.h', 62 'c/dev/pp_video_dev.h',
63 'c/dev/ppb_buffer_dev.h', 63 'c/dev/ppb_buffer_dev.h',
64 'c/dev/ppb_char_set_dev.h', 64 'c/dev/ppb_char_set_dev.h',
65 'c/dev/ppb_cursor_control_dev.h', 65 'c/dev/ppb_cursor_control_dev.h',
66 'c/dev/ppb_device_ref_dev.h', 66 'c/dev/ppb_device_ref_dev.h',
67 'c/dev/ppb_directory_reader_dev.h',
68 'c/dev/ppb_file_chooser_dev.h', 67 'c/dev/ppb_file_chooser_dev.h',
69 'c/dev/ppb_find_dev.h', 68 'c/dev/ppb_find_dev.h',
70 'c/dev/ppb_font_dev.h', 69 'c/dev/ppb_font_dev.h',
71 'c/dev/ppb_ime_input_event_dev.h', 70 'c/dev/ppb_ime_input_event_dev.h',
72 'c/dev/ppb_memory_dev.h', 71 'c/dev/ppb_memory_dev.h',
73 'c/dev/ppb_printing_dev.h', 72 'c/dev/ppb_printing_dev.h',
74 'c/dev/ppb_resource_array_dev.h', 73 'c/dev/ppb_resource_array_dev.h',
75 'c/dev/ppb_scrollbar_dev.h', 74 'c/dev/ppb_scrollbar_dev.h',
76 'c/dev/ppb_testing_dev.h', 75 'c/dev/ppb_testing_dev.h',
77 'c/dev/ppb_text_input_dev.h', 76 'c/dev/ppb_text_input_dev.h',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'cpp_source_files': [ 145 'cpp_source_files': [
147 'cpp/array_output.cc', 146 'cpp/array_output.cc',
148 'cpp/array_output.h', 147 'cpp/array_output.h',
149 'cpp/audio.cc', 148 'cpp/audio.cc',
150 'cpp/audio.h', 149 'cpp/audio.h',
151 'cpp/audio_config.cc', 150 'cpp/audio_config.cc',
152 'cpp/audio_config.h', 151 'cpp/audio_config.h',
153 'cpp/completion_callback.h', 152 'cpp/completion_callback.h',
154 'cpp/core.cc', 153 'cpp/core.cc',
155 'cpp/core.h', 154 'cpp/core.h',
155 'cpp/directory_entry.cc',
156 'cpp/directory_entry.h',
156 'cpp/file_io.cc', 157 'cpp/file_io.cc',
157 'cpp/file_io.h', 158 'cpp/file_io.h',
158 'cpp/file_ref.cc', 159 'cpp/file_ref.cc',
159 'cpp/file_ref.h', 160 'cpp/file_ref.h',
160 'cpp/file_system.cc', 161 'cpp/file_system.cc',
161 'cpp/file_system.h', 162 'cpp/file_system.h',
162 'cpp/fullscreen.cc', 163 'cpp/fullscreen.cc',
163 'cpp/fullscreen.h', 164 'cpp/fullscreen.h',
164 'cpp/graphics_2d.cc', 165 'cpp/graphics_2d.cc',
165 'cpp/graphics_2d.h', 166 'cpp/graphics_2d.h',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'cpp/dev/audio_input_dev.cc', 213 'cpp/dev/audio_input_dev.cc',
213 'cpp/dev/audio_input_dev.h', 214 'cpp/dev/audio_input_dev.h',
214 'cpp/dev/buffer_dev.cc', 215 'cpp/dev/buffer_dev.cc',
215 'cpp/dev/buffer_dev.h', 216 'cpp/dev/buffer_dev.h',
216 'cpp/dev/crypto_dev.cc', 217 'cpp/dev/crypto_dev.cc',
217 'cpp/dev/crypto_dev.h', 218 'cpp/dev/crypto_dev.h',
218 'cpp/dev/cursor_control_dev.cc', 219 'cpp/dev/cursor_control_dev.cc',
219 'cpp/dev/cursor_control_dev.h', 220 'cpp/dev/cursor_control_dev.h',
220 'cpp/dev/device_ref_dev.cc', 221 'cpp/dev/device_ref_dev.cc',
221 'cpp/dev/device_ref_dev.h', 222 'cpp/dev/device_ref_dev.h',
222 'cpp/dev/directory_entry_dev.cc',
223 'cpp/dev/directory_entry_dev.h',
224 'cpp/dev/directory_reader_dev.cc',
225 'cpp/dev/directory_reader_dev.h',
226 'cpp/dev/file_chooser_dev.cc', 223 'cpp/dev/file_chooser_dev.cc',
227 'cpp/dev/file_chooser_dev.h', 224 'cpp/dev/file_chooser_dev.h',
228 'cpp/dev/find_dev.cc', 225 'cpp/dev/find_dev.cc',
229 'cpp/dev/find_dev.h', 226 'cpp/dev/find_dev.h',
230 'cpp/dev/font_dev.cc', 227 'cpp/dev/font_dev.cc',
231 'cpp/dev/font_dev.h', 228 'cpp/dev/font_dev.h',
232 'cpp/dev/graphics_2d_dev.cc', 229 'cpp/dev/graphics_2d_dev.cc',
233 'cpp/dev/graphics_2d_dev.h', 230 'cpp/dev/graphics_2d_dev.h',
234 'cpp/dev/ime_input_event_dev.cc', 231 'cpp/dev/ime_input_event_dev.cc',
235 'cpp/dev/ime_input_event_dev.h', 232 'cpp/dev/ime_input_event_dev.h',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'tests/test_audio_config.cc', 382 'tests/test_audio_config.cc',
386 'tests/test_audio_config.h', 383 'tests/test_audio_config.h',
387 'tests/test_case.cc', 384 'tests/test_case.cc',
388 'tests/test_case.h', 385 'tests/test_case.h',
389 'tests/test_console.cc', 386 'tests/test_console.cc',
390 'tests/test_console.h', 387 'tests/test_console.h',
391 'tests/test_core.cc', 388 'tests/test_core.cc',
392 'tests/test_core.h', 389 'tests/test_core.h',
393 'tests/test_cursor_control.cc', 390 'tests/test_cursor_control.cc',
394 'tests/test_cursor_control.h', 391 'tests/test_cursor_control.h',
395 'tests/test_directory_reader.cc',
396 'tests/test_directory_reader.h',
397 'tests/test_empty.cc', 392 'tests/test_empty.cc',
398 'tests/test_empty.h', 393 'tests/test_empty.h',
399 'tests/test_file_io.cc', 394 'tests/test_file_io.cc',
400 'tests/test_file_io.h', 395 'tests/test_file_io.h',
401 'tests/test_file_ref.cc', 396 'tests/test_file_ref.cc',
402 'tests/test_file_ref.h', 397 'tests/test_file_ref.h',
403 'tests/test_file_system.cc', 398 'tests/test_file_system.cc',
404 'tests/test_file_system.h', 399 'tests/test_file_system.h',
405 'tests/test_fullscreen.cc', 400 'tests/test_fullscreen.cc',
406 'tests/test_fullscreen.h', 401 'tests/test_fullscreen.h',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 'tests/test_x509_certificate_private.h', 521 'tests/test_x509_certificate_private.h',
527 522
528 # Deprecated test cases. 523 # Deprecated test cases.
529 'tests/test_instance_deprecated.cc', 524 'tests/test_instance_deprecated.cc',
530 'tests/test_instance_deprecated.h', 525 'tests/test_instance_deprecated.h',
531 'tests/test_var_deprecated.cc', 526 'tests/test_var_deprecated.cc',
532 'tests/test_var_deprecated.h', 527 'tests/test_var_deprecated.h',
533 ], 528 ],
534 }, 529 },
535 } 530 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared.gypi ('k') | ppapi/proxy/directory_reader_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698