| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'plugin_ppb_graphics_3d.cc', | 69 'plugin_ppb_graphics_3d.cc', |
| 70 'plugin_ppb_image_data.cc', | 70 'plugin_ppb_image_data.cc', |
| 71 'plugin_ppb_input_event.cc', | 71 'plugin_ppb_input_event.cc', |
| 72 'plugin_ppb_instance.cc', | 72 'plugin_ppb_instance.cc', |
| 73 'plugin_ppb_memory.cc', | 73 'plugin_ppb_memory.cc', |
| 74 'plugin_ppb_messaging.cc', | 74 'plugin_ppb_messaging.cc', |
| 75 'plugin_ppb_mouse_lock.cc', | 75 'plugin_ppb_mouse_lock.cc', |
| 76 'plugin_ppb_net_address_private.cc', | 76 'plugin_ppb_net_address_private.cc', |
| 77 'plugin_ppb_pdf.cc', | 77 'plugin_ppb_pdf.cc', |
| 78 'plugin_ppb_scrollbar.cc', | 78 'plugin_ppb_scrollbar.cc', |
| 79 'plugin_ppb_tcp_server_socket_private.cc', |
| 79 'plugin_ppb_tcp_socket_private.cc', | 80 'plugin_ppb_tcp_socket_private.cc', |
| 80 'plugin_ppb_testing.cc', | 81 'plugin_ppb_testing.cc', |
| 81 'plugin_ppb_udp_socket_private.cc', | 82 'plugin_ppb_udp_socket_private.cc', |
| 82 'plugin_ppb_url_loader.cc', | 83 'plugin_ppb_url_loader.cc', |
| 83 'plugin_ppb_url_request_info.cc', | 84 'plugin_ppb_url_request_info.cc', |
| 84 'plugin_ppb_url_response_info.cc', | 85 'plugin_ppb_url_response_info.cc', |
| 85 'plugin_ppb_var.cc', | 86 'plugin_ppb_var.cc', |
| 86 'plugin_ppb_view.cc', | 87 'plugin_ppb_view.cc', |
| 87 'plugin_ppb_websocket.cc', | 88 'plugin_ppb_websocket.cc', |
| 88 'plugin_ppb_widget.cc', | 89 'plugin_ppb_widget.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 115 'srpc', | 116 'srpc', |
| 116 'gio', | 117 'gio', |
| 117 'platform', | 118 'platform', |
| 118 ]) | 119 ]) |
| 119 | 120 |
| 120 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 121 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
| 121 env.AddLibraryToSdk(libppruntime) | 122 env.AddLibraryToSdk(libppruntime) |
| 122 | 123 |
| 123 # Clients that overload main() will use ppruntime.h. | 124 # Clients that overload main() will use ppruntime.h. |
| 124 env.Requires(libppruntime, header_install) | 125 env.Requires(libppruntime, header_install) |
| OLD | NEW |