OLD | NEW |
| (Empty) |
1 // Copyright (c) 2010 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // This is a build test that includes the dev PPAPI C++ headers, to make | |
6 // sure that the ppapi header layout in the NaCl toolchain is correct. The | |
7 // headers listed in this file are maintained by the script | |
8 // ../../src/shared/ppapi/update-scons.py. Update $SOURCE_ROOT/ppapi and run | |
9 // the script to update all of the source files listed here. | |
10 | |
11 // update-scons.py reads this file and finds the inclusion marker. It | |
12 // replaces all of the #includes with the corresponding list of files from | |
13 // the given gyp file. | |
14 // | |
15 // The inclusion marker format is: | |
16 // // From GYP_FILE_NAME:TARGET:REGEXP | |
17 // | |
18 // For example, if this exists in this file: | |
19 // // From ppapi.gyp:ppapi_cpp_objects:cpp/dev/[^/]*\.h | |
20 // | |
21 // then the script will remove all of the #include lines. It will then find | |
22 // the 'ppapi_cpp_objects' target in the ppapi.gyp file. It will find all | |
23 // 'sources' for that target that match the regular expression | |
24 // 'cpp/dev/[^/]*\.h' and will insert lines to #include each of those files. | |
25 | |
26 // From ppapi_cpp.gypi:ppapi_cpp_objects:cpp/dev/[^/]*\.h | |
27 #include "ppapi/cpp/dev/buffer_dev.h" | |
28 #include "ppapi/cpp/dev/context_3d_dev.h" | |
29 #include "ppapi/cpp/dev/directory_entry_dev.h" | |
30 #include "ppapi/cpp/dev/directory_reader_dev.h" | |
31 #include "ppapi/cpp/dev/file_chooser_dev.h" | |
32 #include "ppapi/cpp/dev/file_io_dev.h" | |
33 #include "ppapi/cpp/dev/file_ref_dev.h" | |
34 #include "ppapi/cpp/dev/file_system_dev.h" | |
35 #include "ppapi/cpp/dev/find_dev.h" | |
36 #include "ppapi/cpp/dev/font_dev.h" | |
37 #include "ppapi/cpp/dev/fullscreen_dev.h" | |
38 #include "ppapi/cpp/dev/graphics_3d_client_dev.h" | |
39 #include "ppapi/cpp/dev/graphics_3d_dev.h" | |
40 #include "ppapi/cpp/dev/printing_dev.h" | |
41 #include "ppapi/cpp/dev/scrollbar_dev.h" | |
42 #include "ppapi/cpp/dev/selection_dev.h" | |
43 #include "ppapi/cpp/dev/surface_3d_dev.h" | |
44 #include "ppapi/cpp/dev/transport_dev.h" | |
45 #include "ppapi/cpp/dev/url_util_dev.h" | |
46 #include "ppapi/cpp/dev/video_decoder_dev.h" | |
47 #include "ppapi/cpp/dev/widget_client_dev.h" | |
48 #include "ppapi/cpp/dev/widget_dev.h" | |
49 #include "ppapi/cpp/dev/zoom_dev.h" | |
50 #include "ppapi/cpp/dev/scriptable_object_deprecated.h" | |
OLD | NEW |