| 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 24 matching lines...) Expand all Loading... |
| 35 # Cross platform inputs used to build the cross platform library. | 35 # Cross platform inputs used to build the cross platform library. |
| 36 cross_inputs = [ | 36 cross_inputs = [ |
| 37 'cross/bounding_box.cc', | 37 'cross/bounding_box.cc', |
| 38 'cross/buffer.cc', | 38 'cross/buffer.cc', |
| 39 'cross/canvas.cc', | 39 'cross/canvas.cc', |
| 40 'cross/canvas_paint.cc', | 40 'cross/canvas_paint.cc', |
| 41 'cross/canvas_shader.cc', | 41 'cross/canvas_shader.cc', |
| 42 'cross/class_manager.cc', | 42 'cross/class_manager.cc', |
| 43 'cross/clear_buffer.cc', | 43 'cross/clear_buffer.cc', |
| 44 'cross/client.cc', | 44 'cross/client.cc', |
| 45 'cross/client_info.cc', |
| 45 'cross/core_metrics.cc', | 46 'cross/core_metrics.cc', |
| 46 'cross/counter.cc', | 47 'cross/counter.cc', |
| 47 'cross/counter_manager.cc', | 48 'cross/counter_manager.cc', |
| 48 'cross/curve.cc', | 49 'cross/curve.cc', |
| 49 'cross/draw_context.cc', | 50 'cross/draw_context.cc', |
| 50 'cross/draw_element.cc', | 51 'cross/draw_element.cc', |
| 51 'cross/draw_list.cc', | 52 'cross/draw_list.cc', |
| 52 'cross/draw_list_manager.cc', | 53 'cross/draw_list_manager.cc', |
| 53 'cross/draw_pass.cc', | 54 'cross/draw_pass.cc', |
| 54 'cross/effect.cc', | 55 'cross/effect.cc', |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 env.Append(CPPPATH = env['RENDERER_INCLUDE_PATH']) | 206 env.Append(CPPPATH = env['RENDERER_INCLUDE_PATH']) |
| 206 | 207 |
| 207 # Create a platform independent library from the cross sources | 208 # Create a platform independent library from the cross sources |
| 208 # called "o3dCore" | 209 # called "o3dCore" |
| 209 o3dcore_lib = env.ComponentLibrary('o3dCore', cross_inputs) | 210 o3dcore_lib = env.ComponentLibrary('o3dCore', cross_inputs) |
| 210 | 211 |
| 211 | 212 |
| 212 # Create a platform-specific target library from the sources | 213 # Create a platform-specific target library from the sources |
| 213 # called "o3dCorePlatform" | 214 # called "o3dCorePlatform" |
| 214 o3dcorerender_lib = env.ComponentLibrary('o3dCorePlatform', platform_inputs) | 215 o3dcorerender_lib = env.ComponentLibrary('o3dCorePlatform', platform_inputs) |
| OLD | NEW |