| 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 basic 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/[^/]*\.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 'cpp/[^/]*\.h' | |
| 24 // and will insert lines to #include each of those files. | |
| 25 | |
| 26 // From ppapi_cpp.gypi:ppapi_cpp_objects:cpp/[^/]*\.h | |
| 27 #include "ppapi/cpp/audio.h" | |
| 28 #include "ppapi/cpp/audio_config.h" | |
| 29 #include "ppapi/cpp/common.h" | |
| 30 #include "ppapi/cpp/completion_callback.h" | |
| 31 #include "ppapi/cpp/core.h" | |
| 32 #include "ppapi/cpp/graphics_2d.h" | |
| 33 #include "ppapi/cpp/image_data.h" | |
| 34 #include "ppapi/cpp/instance.h" | |
| 35 #include "ppapi/cpp/logging.h" | |
| 36 #include "ppapi/cpp/module.h" | |
| 37 #include "ppapi/cpp/module_impl.h" | |
| 38 #include "ppapi/cpp/non_thread_safe_ref_count.h" | |
| 39 #include "ppapi/cpp/paint_aggregator.h" | |
| 40 #include "ppapi/cpp/paint_manager.h" | |
| 41 #include "ppapi/cpp/point.h" | |
| 42 #include "ppapi/cpp/rect.h" | |
| 43 #include "ppapi/cpp/resource.h" | |
| 44 #include "ppapi/cpp/size.h" | |
| 45 #include "ppapi/cpp/url_loader.h" | |
| 46 #include "ppapi/cpp/url_request_info.h" | |
| 47 #include "ppapi/cpp/url_response_info.h" | |
| 48 #include "ppapi/cpp/var.h" | |
| OLD | NEW |