summaryrefslogtreecommitdiffstats
path: root/ppapi/c
diff options
context:
space:
mode:
authordmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-19 18:16:15 +0000
committerdmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-19 18:16:15 +0000
commite2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a (patch)
tree646e053b18ed7fc5456aeb76771a8faede60e050 /ppapi/c
parentae4da5152e5c30ce4bc9e9e49f6c4680be9bdbd1 (diff)
downloadchromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.zip
chromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.tar.gz
chromium_src-e2b8c6fd5f6dfdfcd03da1ee4a9030960ac9538a.tar.bz2
Add c/dev/ppb_widget_dev.h and cpp/non_thread_safe_ref_count.h to ppapi.gyp. Add a simple test to ensure all C++ files compile. Re-sorted the includes in test_c_includes.c that uncovered a problem whereby ppapi headers expect pp_stdint.h to include stddef.h, and it wasn't doing it on Windows.
See http://codereview.chromium.org/5190004/ for an attempt at automating the test generation and verification of ppapi.gyp. BUG=66321 TEST=None Review URL: http://codereview.chromium.org/5233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r--ppapi/c/pp_stdint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/c/pp_stdint.h b/ppapi/c/pp_stdint.h
index 3bb11b9..23a7b78 100644
--- a/ppapi/c/pp_stdint.h
+++ b/ppapi/c/pp_stdint.h
@@ -26,9 +26,10 @@ typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
-#include <stddef.h> // Needed for size_t.
#endif
+#include <stddef.h> // Needed for size_t.
+
/**
* @}
* End addtogroup PP