OLD | NEW |
1 # Copyright 2009, Google Inc. | 1 # Copyright 2009, Google Inc. |
2 # All rights reserved. | 2 # All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 10 matching lines...) Expand all Loading... |
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 | 29 |
30 | 30 |
31 O3D_IDL_SOURCES = [ | 31 [ 'idl/bitmap.idl', |
32 'idl/bitmap.idl', | |
33 'idl/bounding_box.idl', | 32 'idl/bounding_box.idl', |
34 'idl/buffer.idl', | 33 'idl/buffer.idl', |
35 'idl/canvas.idl', | 34 'idl/canvas.idl', |
36 'idl/canvas_paint.idl', | 35 'idl/canvas_paint.idl', |
37 'idl/canvas_shader.idl', | 36 'idl/canvas_shader.idl', |
38 'idl/clear_buffer.idl', | 37 'idl/clear_buffer.idl', |
39 'idl/client.idl', | 38 'idl/client.idl', |
40 'idl/counter.idl', | 39 'idl/counter.idl', |
41 'idl/cursor.idl', | 40 'idl/cursor.idl', |
42 'idl/curve.idl', | 41 'idl/curve.idl', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'idl/transform.idl', | 81 'idl/transform.idl', |
83 'idl/tree_traversal.idl', | 82 'idl/tree_traversal.idl', |
84 'idl/types.idl', | 83 'idl/types.idl', |
85 'idl/vector.idl', | 84 'idl/vector.idl', |
86 'idl/vertex_source.idl', | 85 'idl/vertex_source.idl', |
87 'idl/viewport.idl', | 86 'idl/viewport.idl', |
88 'idl/archive_request.idl', | 87 'idl/archive_request.idl', |
89 'idl/raw_data.idl', | 88 'idl/raw_data.idl', |
90 ] | 89 ] |
91 | 90 |
92 Export('O3D_IDL_SOURCES') | 91 |
OLD | NEW |