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