David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All Rights Reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // Includes all headers in a C context to make sure they compile as C files. |
| 16 | |
David Ghandehari | 175e9c8 | 2017-02-21 15:46:11 -0800 | [diff] [blame] | 17 | #include "starboard/accessibility.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 18 | #include "starboard/atomic.h" |
David Ghandehari | c53efd6 | 2016-10-04 01:07:30 -0700 | [diff] [blame] | 19 | #include "starboard/audio_sink.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 20 | #include "starboard/blitter.h" |
| 21 | #include "starboard/byte_swap.h" |
| 22 | #include "starboard/character.h" |
| 23 | #include "starboard/condition_variable.h" |
| 24 | #include "starboard/configuration.h" |
David Ghandehari | 878ef3e | 2016-11-13 21:06:36 -0800 | [diff] [blame] | 25 | #include "starboard/decode_target.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 26 | #include "starboard/directory.h" |
| 27 | #include "starboard/double.h" |
| 28 | #include "starboard/drm.h" |
| 29 | #include "starboard/event.h" |
| 30 | #include "starboard/export.h" |
| 31 | #include "starboard/file.h" |
David Ghandehari | c53efd6 | 2016-10-04 01:07:30 -0700 | [diff] [blame] | 32 | #include "starboard/input.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 33 | #include "starboard/key.h" |
| 34 | #include "starboard/log.h" |
| 35 | #include "starboard/media.h" |
| 36 | #include "starboard/memory.h" |
David Ghandehari | e9b4b99 | 2016-10-26 22:41:00 -0700 | [diff] [blame] | 37 | #include "starboard/microphone.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 38 | #include "starboard/mutex.h" |
| 39 | #include "starboard/once.h" |
| 40 | #include "starboard/player.h" |
| 41 | #include "starboard/socket.h" |
| 42 | #include "starboard/socket_waiter.h" |
Andrew Top | a953d4e | 2016-11-22 22:38:45 -0800 | [diff] [blame] | 43 | #include "starboard/speech_synthesis.h" |
David Ghandehari | 9e5b587 | 2016-07-28 09:50:04 -0700 | [diff] [blame] | 44 | #include "starboard/storage.h" |
| 45 | #include "starboard/string.h" |
| 46 | #include "starboard/system.h" |
| 47 | #include "starboard/thread.h" |
| 48 | #include "starboard/thread_types.h" |
| 49 | #include "starboard/time.h" |
| 50 | #include "starboard/time_zone.h" |
| 51 | #include "starboard/types.h" |
| 52 | #include "starboard/user.h" |
| 53 | #include "starboard/window.h" |
| 54 | |
| 55 | // This doesn't really belong here, but ensures that SB_COMPILE_ASSERT works in |
| 56 | // a straight-C context. |
| 57 | SB_COMPILE_ASSERT(1 == 1, compile_assert_test_one_equals_one); |