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