| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 # Underlay $SOURCE_ROOT/gpu in this directory. | 8 # Underlay $SOURCE_ROOT/gpu in this directory. |
| 9 Dir('.').addRepository(Dir('#/../gpu')) | 9 Dir('.').addRepository(Dir('#/../gpu')) |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'plugin_ppb_audio_config.cc', | 56 'plugin_ppb_audio_config.cc', |
| 57 'plugin_ppb_buffer.cc', | 57 'plugin_ppb_buffer.cc', |
| 58 'plugin_ppb_core.cc', | 58 'plugin_ppb_core.cc', |
| 59 'plugin_ppb_cursor_control.cc', | 59 'plugin_ppb_cursor_control.cc', |
| 60 'plugin_ppb_file_io.cc', | 60 'plugin_ppb_file_io.cc', |
| 61 'plugin_ppb_file_system.cc', | 61 'plugin_ppb_file_system.cc', |
| 62 'plugin_ppb_file_ref.cc', | 62 'plugin_ppb_file_ref.cc', |
| 63 'plugin_ppb_find.cc', | 63 'plugin_ppb_find.cc', |
| 64 'plugin_ppb_font.cc', | 64 'plugin_ppb_font.cc', |
| 65 'plugin_ppb_fullscreen.cc', | 65 'plugin_ppb_fullscreen.cc', |
| 66 'plugin_ppb_gamepad.cc', |
| 66 'plugin_ppb_graphics_2d.cc', | 67 'plugin_ppb_graphics_2d.cc', |
| 67 'plugin_ppb_graphics_3d.cc', | 68 'plugin_ppb_graphics_3d.cc', |
| 68 'plugin_ppb_image_data.cc', | 69 'plugin_ppb_image_data.cc', |
| 69 'plugin_ppb_input_event.cc', | 70 'plugin_ppb_input_event.cc', |
| 70 'plugin_ppb_instance.cc', | 71 'plugin_ppb_instance.cc', |
| 71 'plugin_ppb_memory.cc', | 72 'plugin_ppb_memory.cc', |
| 72 'plugin_ppb_messaging.cc', | 73 'plugin_ppb_messaging.cc', |
| 73 'plugin_ppb_mouse_lock.cc', | 74 'plugin_ppb_mouse_lock.cc', |
| 74 'plugin_ppb_pdf.cc', | 75 'plugin_ppb_pdf.cc', |
| 75 'plugin_ppb_scrollbar.cc', | 76 'plugin_ppb_scrollbar.cc', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'srpc', | 112 'srpc', |
| 112 'gio', | 113 'gio', |
| 113 'platform', | 114 'platform', |
| 114 ]) | 115 ]) |
| 115 | 116 |
| 116 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 117 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
| 117 env.AddLibraryToSdk(libppruntime) | 118 env.AddLibraryToSdk(libppruntime) |
| 118 | 119 |
| 119 # Clients that overload main() will use ppruntime.h. | 120 # Clients that overload main() will use ppruntime.h. |
| 120 env.Requires(libppruntime, header_install) | 121 env.Requires(libppruntime, header_install) |
| OLD | NEW |