OLD | NEW |
(Empty) | |
| 1 # Copyright 2009, Google Inc. |
| 2 # All rights reserved. |
| 3 # |
| 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are |
| 6 # met: |
| 7 # |
| 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above |
| 11 # copyright notice, this list of conditions and the following disclaimer |
| 12 # in the documentation and/or other materials provided with the |
| 13 # distribution. |
| 14 # * Neither the name of Google Inc. nor the names of its |
| 15 # contributors may be used to endorse or promote products derived from |
| 16 # this software without specific prior written permission. |
| 17 # |
| 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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. |
| 29 |
| 30 |
| 31 O3D_IDL_SOURCES = [ |
| 32 'idl/bitmap.idl', |
| 33 'idl/bounding_box.idl', |
| 34 'idl/buffer.idl', |
| 35 'idl/canvas.idl', |
| 36 'idl/canvas_paint.idl', |
| 37 'idl/canvas_shader.idl', |
| 38 'idl/clear_buffer.idl', |
| 39 'idl/client.idl', |
| 40 'idl/counter.idl', |
| 41 'idl/cursor.idl', |
| 42 'idl/curve.idl', |
| 43 'idl/display_mode.idl', |
| 44 'idl/draw_context.idl', |
| 45 'idl/draw_element.idl', |
| 46 'idl/draw_list.idl', |
| 47 'idl/draw_pass.idl', |
| 48 'idl/effect.idl', |
| 49 'idl/element.idl', |
| 50 'idl/event.idl', |
| 51 'idl/field.idl', |
| 52 'idl/file_request.idl', |
| 53 'idl/function.idl', |
| 54 'idl/material.idl', |
| 55 'idl/matrix4_axis_rotation.idl', |
| 56 'idl/matrix4_composition.idl', |
| 57 'idl/matrix4_scale.idl', |
| 58 'idl/matrix4_translation.idl', |
| 59 'idl/named.idl', |
| 60 'idl/pack.idl', |
| 61 'idl/param_array.idl', |
| 62 'idl/param.idl', |
| 63 'idl/param_object.idl', |
| 64 'idl/param_operation.idl', |
| 65 'idl/plugin.idl', |
| 66 'idl/primitive.idl', |
| 67 'idl/ray_intersection_info.idl', |
| 68 'idl/render_event.idl', |
| 69 'idl/render_node.idl', |
| 70 'idl/render_surface.idl', |
| 71 'idl/render_surface_set.idl', |
| 72 'idl/sampler.idl', |
| 73 'idl/shape.idl', |
| 74 'idl/skin.idl', |
| 75 'idl/standard_param.idl', |
| 76 'idl/state.idl', |
| 77 'idl/state_set.idl', |
| 78 'idl/stream.idl', |
| 79 'idl/stream_bank.idl', |
| 80 'idl/texture.idl', |
| 81 'idl/tick_event.idl', |
| 82 'idl/transform.idl', |
| 83 'idl/tree_traversal.idl', |
| 84 'idl/types.idl', |
| 85 'idl/vector.idl', |
| 86 'idl/vertex_source.idl', |
| 87 'idl/viewport.idl', |
| 88 'idl/archive_request.idl', |
| 89 'idl/raw_data.idl', |
| 90 ] |
| 91 |
| 92 Export('O3D_IDL_SOURCES') |
OLD | NEW |