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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'plugin_globals.cc', | 53 'plugin_globals.cc', |
54 'plugin_instance_data.cc', | 54 'plugin_instance_data.cc', |
55 'plugin_main.cc', | 55 'plugin_main.cc', |
56 'plugin_nacl_file.cc', | 56 'plugin_nacl_file.cc', |
57 'plugin_opengles.cc', | 57 'plugin_opengles.cc', |
58 'plugin_ppb.cc', | 58 'plugin_ppb.cc', |
59 'plugin_ppb_audio.cc', | 59 'plugin_ppb_audio.cc', |
60 'plugin_ppb_audio_config.cc', | 60 'plugin_ppb_audio_config.cc', |
61 'plugin_ppb_buffer.cc', | 61 'plugin_ppb_buffer.cc', |
62 'plugin_ppb_core.cc', | 62 'plugin_ppb_core.cc', |
63 'plugin_ppb_cursor_control.cc', | |
64 'plugin_ppb_file_io.cc', | 63 'plugin_ppb_file_io.cc', |
65 'plugin_ppb_file_system.cc', | 64 'plugin_ppb_file_system.cc', |
66 'plugin_ppb_file_ref.cc', | 65 'plugin_ppb_file_ref.cc', |
67 'plugin_ppb_find.cc', | 66 'plugin_ppb_find.cc', |
68 'plugin_ppb_font.cc', | 67 'plugin_ppb_font.cc', |
69 'plugin_ppb_fullscreen.cc', | 68 'plugin_ppb_fullscreen.cc', |
70 'plugin_ppb_gamepad.cc', | 69 'plugin_ppb_gamepad.cc', |
71 'plugin_ppb_graphics_2d.cc', | 70 'plugin_ppb_graphics_2d.cc', |
72 'plugin_ppb_graphics_3d.cc', | 71 'plugin_ppb_graphics_3d.cc', |
73 'plugin_ppb_host_resolver_private.cc', | 72 'plugin_ppb_host_resolver_private.cc', |
74 'plugin_ppb_image_data.cc', | 73 'plugin_ppb_image_data.cc', |
75 'plugin_ppb_input_event.cc', | 74 'plugin_ppb_input_event.cc', |
76 'plugin_ppb_instance.cc', | 75 'plugin_ppb_instance.cc', |
77 'plugin_ppb_memory.cc', | 76 'plugin_ppb_memory.cc', |
78 'plugin_ppb_messaging.cc', | 77 'plugin_ppb_messaging.cc', |
| 78 'plugin_ppb_mouse_cursor.cc', |
79 'plugin_ppb_mouse_lock.cc', | 79 'plugin_ppb_mouse_lock.cc', |
80 'plugin_ppb_net_address_private.cc', | 80 'plugin_ppb_net_address_private.cc', |
81 'plugin_ppb_pdf.cc', | 81 'plugin_ppb_pdf.cc', |
82 'plugin_ppb_scrollbar.cc', | 82 'plugin_ppb_scrollbar.cc', |
83 'plugin_ppb_tcp_server_socket_private.cc', | 83 'plugin_ppb_tcp_server_socket_private.cc', |
84 'plugin_ppb_tcp_socket_private.cc', | 84 'plugin_ppb_tcp_socket_private.cc', |
85 'plugin_ppb_testing.cc', | 85 'plugin_ppb_testing.cc', |
86 'plugin_ppb_udp_socket_private.cc', | 86 'plugin_ppb_udp_socket_private.cc', |
87 'plugin_ppb_url_loader.cc', | 87 'plugin_ppb_url_loader.cc', |
88 'plugin_ppb_url_request_info.cc', | 88 'plugin_ppb_url_request_info.cc', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'srpc', | 120 'srpc', |
121 'gio', | 121 'gio', |
122 'platform', | 122 'platform', |
123 ]) | 123 ]) |
124 | 124 |
125 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 125 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
126 env.AddLibraryToSdk(libppruntime) | 126 env.AddLibraryToSdk(libppruntime) |
127 | 127 |
128 # Clients that overload main() will use ppruntime.h. | 128 # Clients that overload main() will use ppruntime.h. |
129 env.Requires(libppruntime, header_install) | 129 env.Requires(libppruntime, header_install) |
OLD | NEW |