Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1137)

Side by Side Diff: remoting/remoting.gyp

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 10
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'REMOTING_MULTI_PROCESS', 239 'REMOTING_MULTI_PROCESS',
240 ], 240 ],
241 }], 241 }],
242 ], 242 ],
243 }, 243 },
244 244
245 'conditions': [ 245 'conditions': [
246 ['enable_remoting_host==1', { 246 ['enable_remoting_host==1', {
247 'targets': [ 247 'targets': [
248 { 248 {
249 'target_name': 'differ_block', 249 'target_name': 'remoting_screen_capturer',
250 'type': 'static_library', 250 'type': 'static_library',
251 'variables': { 'enable_wexit_time_destructors': 1, }, 251 'variables': { 'enable_wexit_time_destructors': 1, },
252 'dependencies': [
253 '../skia/skia.gyp:skia',
254 ],
255 'sources': [
256 'capturer/capture_data.cc',
257 'capturer/capture_data.h',
258 'capturer/shared_buffer.cc',
259 'capturer/shared_buffer.h',
260 'capturer/shared_buffer_factory.h',
261 'capturer/differ.cc',
262 'capturer/differ.h',
263 'capturer/differ_block.cc',
264 'capturer/differ_block.h',
265 'capturer/linux/x_server_pixel_buffer.cc',
266 'capturer/linux/x_server_pixel_buffer.h',
267 'capturer/mouse_cursor_shape.cc',
268 'capturer/mouse_cursor_shape.h',
269 'capturer/video_frame.cc',
270 'capturer/video_frame.h',
271 'capturer/video_frame_capturer.h',
272 'capturer/video_frame_capturer_fake.cc',
273 'capturer/video_frame_capturer_fake.h',
274 'capturer/video_frame_capturer_helper.cc',
275 'capturer/video_frame_capturer_helper.h',
276 'capturer/video_frame_capturer_linux.cc',
277 'capturer/video_frame_capturer_mac.mm',
278 'capturer/video_frame_capturer_win.cc',
279 'capturer/video_frame_queue.cc',
280 'capturer/video_frame_queue.h',
281 ],
252 'conditions': [ 282 'conditions': [
253 [ 'target_arch == "ia32" or target_arch == "x64"', { 283 [ 'target_arch == "ia32" or target_arch == "x64"', {
254 'dependencies': [ 284 'dependencies': [
255 'differ_block_sse2', 285 'differ_block_sse2',
256 ], 286 ],
257 }], 287 }],
288 ['toolkit_uses_gtk==1', {
289 'dependencies': [
290 '../build/linux/system.gyp:gtk',
291 ],
292 }, { # else toolkit_uses_gtk!=1
293 'sources!': [
294 '*_gtk.cc',
295 ],
296 }],
258 ], 297 ],
259 'sources': [ 298 }, # end of target remoting_screen_capturer
260 'host/differ_block.cc',
261 'host/differ_block.h',
262 ],
263 }, # end of target differ_block
264 299
265 { 300 {
266 'target_name': 'remoting_host', 301 'target_name': 'remoting_host',
267 'type': 'static_library', 302 'type': 'static_library',
268 'variables': { 'enable_wexit_time_destructors': 1, }, 303 'variables': { 'enable_wexit_time_destructors': 1, },
269 'dependencies': [ 304 'dependencies': [
270 'remoting_base', 305 'remoting_base',
271 'remoting_jingle_glue', 306 'remoting_jingle_glue',
272 'remoting_protocol', 307 'remoting_protocol',
273 'differ_block', 308 'remoting_screen_capturer',
274 '../crypto/crypto.gyp:crypto', 309 '../crypto/crypto.gyp:crypto',
275 '../google_apis/google_apis.gyp:google_apis', 310 '../google_apis/google_apis.gyp:google_apis',
276 '../ipc/ipc.gyp:ipc', 311 '../ipc/ipc.gyp:ipc',
277 ], 312 ],
278 'defines': [ 313 'defines': [
279 'VERSION=<(version_full)', 314 'VERSION=<(version_full)',
280 ], 315 ],
281 'sources': [ 316 'sources': [
282 'host/audio_capturer.cc', 317 'host/audio_capturer.cc',
283 'host/audio_capturer.h', 318 'host/audio_capturer.h',
(...skipping 28 matching lines...) Expand all
312 'host/desktop_environment.h', 347 'host/desktop_environment.h',
313 'host/desktop_environment_factory.cc', 348 'host/desktop_environment_factory.cc',
314 'host/desktop_environment_factory.h', 349 'host/desktop_environment_factory.h',
315 'host/desktop_resizer.h', 350 'host/desktop_resizer.h',
316 'host/desktop_resizer_linux.cc', 351 'host/desktop_resizer_linux.cc',
317 'host/desktop_resizer_win.cc', 352 'host/desktop_resizer_win.cc',
318 'host/desktop_resizer_mac.cc', 353 'host/desktop_resizer_mac.cc',
319 'host/desktop_session_connector.h', 354 'host/desktop_session_connector.h',
320 'host/desktop_session_proxy.cc', 355 'host/desktop_session_proxy.cc',
321 'host/desktop_session_proxy.h', 356 'host/desktop_session_proxy.h',
322 'host/differ.cc',
323 'host/differ.h',
324 'host/disconnect_window.h', 357 'host/disconnect_window.h',
325 'host/disconnect_window_gtk.cc', 358 'host/disconnect_window_gtk.cc',
326 'host/disconnect_window_mac.h', 359 'host/disconnect_window_mac.h',
327 'host/disconnect_window_mac.mm', 360 'host/disconnect_window_mac.mm',
328 'host/disconnect_window_win.cc', 361 'host/disconnect_window_win.cc',
329 'host/dns_blackhole_checker.cc', 362 'host/dns_blackhole_checker.cc',
330 'host/dns_blackhole_checker.h', 363 'host/dns_blackhole_checker.h',
331 'host/event_executor.h', 364 'host/event_executor.h',
332 'host/event_executor_fake.cc', 365 'host/event_executor_fake.cc',
333 'host/event_executor_fake.h', 366 'host/event_executor_fake.h',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 'host/it2me_host_user_interface.cc', 398 'host/it2me_host_user_interface.cc',
366 'host/it2me_host_user_interface.h', 399 'host/it2me_host_user_interface.h',
367 'host/json_host_config.cc', 400 'host/json_host_config.cc',
368 'host/json_host_config.h', 401 'host/json_host_config.h',
369 'host/linux/audio_pipe_reader.cc', 402 'host/linux/audio_pipe_reader.cc',
370 'host/linux/audio_pipe_reader.h', 403 'host/linux/audio_pipe_reader.h',
371 'host/linux/x11_util.cc', 404 'host/linux/x11_util.cc',
372 'host/linux/x11_util.h', 405 'host/linux/x11_util.h',
373 'host/linux/x_server_clipboard.cc', 406 'host/linux/x_server_clipboard.cc',
374 'host/linux/x_server_clipboard.h', 407 'host/linux/x_server_clipboard.h',
375 'host/linux/x_server_pixel_buffer.cc',
376 'host/linux/x_server_pixel_buffer.h',
377 'host/local_input_monitor.h', 408 'host/local_input_monitor.h',
378 'host/local_input_monitor_linux.cc', 409 'host/local_input_monitor_linux.cc',
379 'host/local_input_monitor_mac.mm', 410 'host/local_input_monitor_mac.mm',
380 'host/local_input_monitor_thread_linux.cc', 411 'host/local_input_monitor_thread_linux.cc',
381 'host/local_input_monitor_thread_linux.h', 412 'host/local_input_monitor_thread_linux.h',
382 'host/local_input_monitor_win.cc', 413 'host/local_input_monitor_win.cc',
383 'host/log_to_server.cc', 414 'host/log_to_server.cc',
384 'host/log_to_server.h', 415 'host/log_to_server.h',
385 'host/mac/scoped_pixel_buffer_object.cc', 416 'host/mac/scoped_pixel_buffer_object.cc',
386 'host/mac/scoped_pixel_buffer_object.h', 417 'host/mac/scoped_pixel_buffer_object.h',
(...skipping 26 matching lines...) Expand all
413 'host/session_manager_factory.h', 444 'host/session_manager_factory.h',
414 'host/signaling_connector.cc', 445 'host/signaling_connector.cc',
415 'host/signaling_connector.h', 446 'host/signaling_connector.h',
416 'host/ui_strings.cc', 447 'host/ui_strings.cc',
417 'host/ui_strings.h', 448 'host/ui_strings.h',
418 'host/url_request_context.cc', 449 'host/url_request_context.cc',
419 'host/url_request_context.h', 450 'host/url_request_context.h',
420 'host/usage_stats_consent.h', 451 'host/usage_stats_consent.h',
421 'host/usage_stats_consent_mac.cc', 452 'host/usage_stats_consent_mac.cc',
422 'host/usage_stats_consent_win.cc', 453 'host/usage_stats_consent_win.cc',
423 'host/video_frame.cc',
424 'host/video_frame.h',
425 'host/video_frame_capturer.h',
426 'host/video_frame_capturer_fake.cc',
427 'host/video_frame_capturer_fake.h',
428 'host/video_frame_capturer_helper.cc',
429 'host/video_frame_capturer_helper.h',
430 'host/video_frame_capturer_linux.cc',
431 'host/video_frame_capturer_mac.mm',
432 'host/video_frame_capturer_win.cc',
433 'host/video_frame_queue.cc',
434 'host/video_frame_queue.h',
435 'host/video_scheduler.cc', 454 'host/video_scheduler.cc',
436 'host/video_scheduler.h', 455 'host/video_scheduler.h',
437 'host/vlog_net_log.cc', 456 'host/vlog_net_log.cc',
438 'host/vlog_net_log.h', 457 'host/vlog_net_log.h',
439 'host/websocket_connection.cc', 458 'host/websocket_connection.cc',
440 'host/websocket_connection.h', 459 'host/websocket_connection.h',
441 'host/websocket_listener.cc', 460 'host/websocket_listener.cc',
442 'host/websocket_listener.h', 461 'host/websocket_listener.h',
443 'host/win/desktop.cc', 462 'host/win/desktop.cc',
444 'host/win/desktop.h', 463 'host/win/desktop.h',
(...skipping 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1859 # This target needs a hard dependency because dependent targets 1878 # This target needs a hard dependency because dependent targets
1860 # depend on chromotocol_proto_lib for headers. 1879 # depend on chromotocol_proto_lib for headers.
1861 'hard_dependency': 1, 1880 'hard_dependency': 1,
1862 'sources': [ 1881 'sources': [
1863 'base/auto_thread.cc', 1882 'base/auto_thread.cc',
1864 'base/auto_thread.h', 1883 'base/auto_thread.h',
1865 'base/auto_thread_task_runner.cc', 1884 'base/auto_thread_task_runner.cc',
1866 'base/auto_thread_task_runner.h', 1885 'base/auto_thread_task_runner.h',
1867 'base/auth_token_util.cc', 1886 'base/auth_token_util.cc',
1868 'base/auth_token_util.h', 1887 'base/auth_token_util.h',
1869 'base/capture_data.cc',
1870 'base/capture_data.h',
1871 'base/compound_buffer.cc', 1888 'base/compound_buffer.cc',
1872 'base/compound_buffer.h', 1889 'base/compound_buffer.h',
1873 'base/constants.cc', 1890 'base/constants.cc',
1874 'base/constants.h', 1891 'base/constants.h',
1875 'base/plugin_thread_task_runner.cc', 1892 'base/plugin_thread_task_runner.cc',
1876 'base/plugin_thread_task_runner.h', 1893 'base/plugin_thread_task_runner.h',
1877 'base/rate_counter.cc', 1894 'base/rate_counter.cc',
1878 'base/rate_counter.h', 1895 'base/rate_counter.h',
1879 'base/resources.cc', 1896 'base/resources.cc',
1880 'base/resources.h', 1897 'base/resources.h',
1881 'base/running_average.cc', 1898 'base/running_average.cc',
1882 'base/running_average.h', 1899 'base/running_average.h',
1883 'base/shared_buffer.cc',
1884 'base/shared_buffer.h',
1885 'base/shared_buffer_factory.h',
1886 'base/socket_reader.cc', 1900 'base/socket_reader.cc',
1887 'base/socket_reader.h', 1901 'base/socket_reader.h',
1888 'base/stoppable.cc', 1902 'base/stoppable.cc',
1889 'base/stoppable.h', 1903 'base/stoppable.h',
1890 'base/util.cc', 1904 'base/util.cc',
1891 'base/util.h', 1905 'base/util.h',
1892 'codec/audio_decoder.cc', 1906 'codec/audio_decoder.cc',
1893 'codec/audio_decoder.h', 1907 'codec/audio_decoder.h',
1894 'codec/audio_decoder_opus.cc', 1908 'codec/audio_decoder_opus.cc',
1895 'codec/audio_decoder_opus.h', 1909 'codec/audio_decoder_opus.h',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
2111 'target_name': 'differ_block_sse2', 2125 'target_name': 'differ_block_sse2',
2112 'type': 'static_library', 2126 'type': 'static_library',
2113 'conditions': [ 2127 'conditions': [
2114 [ 'os_posix == 1 and OS != "mac"', { 2128 [ 'os_posix == 1 and OS != "mac"', {
2115 'cflags': [ 2129 'cflags': [
2116 '-msse2', 2130 '-msse2',
2117 ], 2131 ],
2118 }], 2132 }],
2119 ], 2133 ],
2120 'sources': [ 2134 'sources': [
2121 'host/differ_block_sse2.cc', 2135 'capturer/differ_block_sse2.cc',
2136 'capturer/differ_block_sse2.h',
2122 ], 2137 ],
2123 }, # end of target differ_block_sse2 2138 }, # end of target differ_block_sse2
2124 2139
2125 # Remoting unit tests 2140 # Remoting unit tests
2126 { 2141 {
2127 'target_name': 'remoting_unittests', 2142 'target_name': 'remoting_unittests',
2128 'type': 'executable', 2143 'type': 'executable',
2129 'dependencies': [ 2144 'dependencies': [
2130 'remoting_base', 2145 'remoting_base',
2131 'remoting_resources', 2146 'remoting_resources',
(...skipping 16 matching lines...) Expand all
2148 ], 2163 ],
2149 'defines': [ 2164 'defines': [
2150 'VERSION=<(version_full)', 2165 'VERSION=<(version_full)',
2151 ], 2166 ],
2152 'include_dirs': [ 2167 'include_dirs': [
2153 '../testing/gmock/include', 2168 '../testing/gmock/include',
2154 ], 2169 ],
2155 'sources': [ 2170 'sources': [
2156 '../chrome/test/base/run_all_remoting_unittests.cc', 2171 '../chrome/test/base/run_all_remoting_unittests.cc',
2157 'base/auth_token_util_unittest.cc', 2172 'base/auth_token_util_unittest.cc',
2173 'base/auto_thread_task_runner_unittest.cc',
2158 'base/auto_thread_unittest.cc', 2174 'base/auto_thread_unittest.cc',
2159 'base/auto_thread_task_runner_unittest.cc',
2160 'base/breakpad_win_unittest.cc', 2175 'base/breakpad_win_unittest.cc',
2161 'base/compound_buffer_unittest.cc', 2176 'base/compound_buffer_unittest.cc',
2162 'base/resources_unittest.cc', 2177 'base/resources_unittest.cc',
2163 'base/shared_buffer_unittest.cc',
2164 'base/util_unittest.cc', 2178 'base/util_unittest.cc',
2179 'capturer/capturer_mock_objects.cc',
2180 'capturer/capturer_mock_objects.h',
2181 'capturer/differ_block_unittest.cc',
2182 'capturer/differ_unittest.cc',
2183 'capturer/shared_buffer_unittest.cc',
2184 'capturer/video_frame_capturer_helper_unittest.cc',
2185 'capturer/video_frame_capturer_mac_unittest.cc',
2186 'capturer/video_frame_capturer_unittest.cc',
2165 'client/audio_player_unittest.cc', 2187 'client/audio_player_unittest.cc',
2166 'client/key_event_mapper_unittest.cc', 2188 'client/key_event_mapper_unittest.cc',
2167 'client/plugin/mac_key_event_processor_unittest.cc', 2189 'client/plugin/mac_key_event_processor_unittest.cc',
2168 'codec/audio_encoder_opus_unittest.cc', 2190 'codec/audio_encoder_opus_unittest.cc',
2169 'codec/codec_test.cc', 2191 'codec/codec_test.cc',
2170 'codec/codec_test.h', 2192 'codec/codec_test.h',
2171 'codec/video_decoder_vp8_unittest.cc', 2193 'codec/video_decoder_vp8_unittest.cc',
2172 'codec/video_encoder_verbatim_unittest.cc', 2194 'codec/video_encoder_verbatim_unittest.cc',
2173 'codec/video_encoder_vp8_unittest.cc', 2195 'codec/video_encoder_vp8_unittest.cc',
2174 'host/audio_capturer_win_unittest.cc', 2196 'host/audio_capturer_win_unittest.cc',
2175 'host/branding.cc', 2197 'host/branding.cc',
2176 'host/branding.h', 2198 'host/branding.h',
2177 'host/chromoting_host_context_unittest.cc', 2199 'host/chromoting_host_context_unittest.cc',
2178 'host/chromoting_host_unittest.cc', 2200 'host/chromoting_host_unittest.cc',
2179 'host/client_session_unittest.cc', 2201 'host/client_session_unittest.cc',
2180 'host/config_file_watcher.cc', 2202 'host/config_file_watcher.cc',
2181 'host/config_file_watcher.h', 2203 'host/config_file_watcher.h',
2182 'host/daemon_process.cc', 2204 'host/daemon_process.cc',
2183 'host/daemon_process.h', 2205 'host/daemon_process.h',
2184 'host/daemon_process_unittest.cc', 2206 'host/daemon_process_unittest.cc',
2185 'host/desktop_process.cc', 2207 'host/desktop_process.cc',
2186 'host/desktop_process.h', 2208 'host/desktop_process.h',
2187 'host/desktop_process_unittest.cc', 2209 'host/desktop_process_unittest.cc',
2188 'host/desktop_session.cc', 2210 'host/desktop_session.cc',
2189 'host/desktop_session.h', 2211 'host/desktop_session.h',
2190 'host/desktop_session_agent.cc', 2212 'host/desktop_session_agent.cc',
2191 'host/desktop_session_agent.h', 2213 'host/desktop_session_agent.h',
2192 'host/desktop_session_agent_posix.cc', 2214 'host/desktop_session_agent_posix.cc',
2193 'host/desktop_session_agent_win.cc', 2215 'host/desktop_session_agent_win.cc',
2194 'host/differ_block_unittest.cc',
2195 'host/differ_unittest.cc',
2196 'host/heartbeat_sender_unittest.cc', 2216 'host/heartbeat_sender_unittest.cc',
2197 'host/host_key_pair_unittest.cc', 2217 'host/host_key_pair_unittest.cc',
2198 'host/host_mock_objects.cc', 2218 'host/host_mock_objects.cc',
2199 'host/host_mock_objects.h', 2219 'host/host_mock_objects.h',
2200 'host/json_host_config_unittest.cc', 2220 'host/json_host_config_unittest.cc',
2201 'host/linux/x_server_clipboard_unittest.cc', 2221 'host/linux/x_server_clipboard_unittest.cc',
2202 'host/local_input_monitor_unittest.cc', 2222 'host/local_input_monitor_unittest.cc',
2203 'host/log_to_server_unittest.cc', 2223 'host/log_to_server_unittest.cc',
2204 'host/pin_hash_unittest.cc', 2224 'host/pin_hash_unittest.cc',
2205 'host/policy_hack/fake_policy_watcher.cc', 2225 'host/policy_hack/fake_policy_watcher.cc',
2206 'host/policy_hack/fake_policy_watcher.h', 2226 'host/policy_hack/fake_policy_watcher.h',
2207 'host/policy_hack/mock_policy_callback.cc', 2227 'host/policy_hack/mock_policy_callback.cc',
2208 'host/policy_hack/mock_policy_callback.h', 2228 'host/policy_hack/mock_policy_callback.h',
2209 'host/policy_hack/policy_watcher_unittest.cc', 2229 'host/policy_hack/policy_watcher_unittest.cc',
2210 'host/register_support_host_request_unittest.cc', 2230 'host/register_support_host_request_unittest.cc',
2211 'host/remote_input_filter_unittest.cc', 2231 'host/remote_input_filter_unittest.cc',
2212 'host/resizing_host_observer_unittest.cc', 2232 'host/resizing_host_observer_unittest.cc',
2213 'host/server_log_entry_unittest.cc', 2233 'host/server_log_entry_unittest.cc',
2214 'host/setup/oauth_helper_unittest.cc', 2234 'host/setup/oauth_helper_unittest.cc',
2215 'host/setup/pin_validator_unittest.cc', 2235 'host/setup/pin_validator_unittest.cc',
2216 'host/test_key_pair.h', 2236 'host/test_key_pair.h',
2217 'host/video_frame_capturer_helper_unittest.cc',
2218 'host/video_frame_capturer_mac_unittest.cc',
2219 'host/video_frame_capturer_unittest.cc',
2220 'host/video_scheduler_unittest.cc', 2237 'host/video_scheduler_unittest.cc',
2221 'host/websocket_connection_unittest.cc', 2238 'host/websocket_connection_unittest.cc',
2222 'host/win/launch_process_with_token.cc', 2239 'host/win/launch_process_with_token.cc',
2223 'host/win/launch_process_with_token.h', 2240 'host/win/launch_process_with_token.h',
2224 'host/win/worker_process_launcher.cc', 2241 'host/win/worker_process_launcher.cc',
2225 'host/win/worker_process_launcher.h', 2242 'host/win/worker_process_launcher.h',
2226 'host/win/worker_process_launcher_unittest.cc', 2243 'host/win/worker_process_launcher_unittest.cc',
2227 'jingle_glue/chromium_socket_factory_unittest.cc', 2244 'jingle_glue/chromium_socket_factory_unittest.cc',
2228 'jingle_glue/fake_signal_strategy.cc', 2245 'jingle_glue/fake_signal_strategy.cc',
2229 'jingle_glue/fake_signal_strategy.h', 2246 'jingle_glue/fake_signal_strategy.h',
(...skipping 15 matching lines...) Expand all
2245 'protocol/fake_session.cc', 2262 'protocol/fake_session.cc',
2246 'protocol/fake_session.h', 2263 'protocol/fake_session.h',
2247 'protocol/input_event_tracker_unittest.cc', 2264 'protocol/input_event_tracker_unittest.cc',
2248 'protocol/input_filter_unittest.cc', 2265 'protocol/input_filter_unittest.cc',
2249 'protocol/jingle_messages_unittest.cc', 2266 'protocol/jingle_messages_unittest.cc',
2250 'protocol/jingle_session_unittest.cc', 2267 'protocol/jingle_session_unittest.cc',
2251 'protocol/message_decoder_unittest.cc', 2268 'protocol/message_decoder_unittest.cc',
2252 'protocol/message_reader_unittest.cc', 2269 'protocol/message_reader_unittest.cc',
2253 'protocol/mouse_input_filter_unittest.cc', 2270 'protocol/mouse_input_filter_unittest.cc',
2254 'protocol/negotiating_authenticator_unittest.cc', 2271 'protocol/negotiating_authenticator_unittest.cc',
2272 'protocol/ppapi_module_stub.cc',
2255 'protocol/protocol_mock_objects.cc', 2273 'protocol/protocol_mock_objects.cc',
2256 'protocol/protocol_mock_objects.h', 2274 'protocol/protocol_mock_objects.h',
2257 'protocol/ppapi_module_stub.cc',
2258 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 2275 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
2259 'protocol/v2_authenticator_unittest.cc', 2276 'protocol/v2_authenticator_unittest.cc',
2260 ], 2277 ],
2261 'conditions': [ 2278 'conditions': [
2262 [ 'OS=="win"', { 2279 [ 'OS=="win"', {
2263 'include_dirs': [ 2280 'include_dirs': [
2264 '../breakpad/src', 2281 '../breakpad/src',
2265 ], 2282 ],
2266 'link_settings': { 2283 'link_settings': {
2267 'libraries': [ 2284 'libraries': [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
2321 '../base/allocator/allocator.gyp:allocator', 2338 '../base/allocator/allocator.gyp:allocator',
2322 ], 2339 ],
2323 }, 2340 },
2324 ], 2341 ],
2325 ], 2342 ],
2326 }], # end of 'toolkit_uses_gtk == 1' 2343 }], # end of 'toolkit_uses_gtk == 1'
2327 ], # end of 'conditions' 2344 ], # end of 'conditions'
2328 }, # end of target 'remoting_unittests' 2345 }, # end of target 'remoting_unittests'
2329 ], # end of targets 2346 ], # end of targets
2330 } 2347 }
OLDNEW
« remoting/capturer/video_frame_capturer_win.cc ('K') | « remoting/host/video_scheduler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698