ApplicationImpl cleanup, part 1:
[chromium-blink-merge.git] / remoting / remoting_test.gypi
blobe9b6f43517a49faa0412cd4c4522540baf81c09e
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //remoting:test_support
9       'target_name': 'remoting_test_support',
10       'type': 'static_library',
11       'dependencies': [
12         '../base/base.gyp:base',
13         '../components/components.gyp:policy_component_test_support',
14         '../net/net.gyp:net_test_support',
15         '../testing/gmock.gyp:gmock',
16         '../testing/gtest.gyp:gtest',
17         'remoting_base',
18         'remoting_client',
19         'remoting_host',
20         'remoting_protocol',
21         'remoting_resources',
22       ],
23       'sources': [
24         # Note: sources list duplicated in GN build.
25         'host/fake_desktop_capturer.cc',
26         'host/fake_desktop_capturer.h',
27         'host/fake_desktop_environment.cc',
28         'host/fake_desktop_environment.h',
29         'host/fake_host_extension.cc',
30         'host/fake_host_extension.h',
31         'host/fake_host_status_monitor.h',
32         'host/fake_mouse_cursor_monitor.cc',
33         'host/fake_mouse_cursor_monitor.h',
34         'host/fake_oauth_token_getter.cc',
35         'host/fake_oauth_token_getter.h',
36         'protocol/fake_authenticator.cc',
37         'protocol/fake_authenticator.h',
38         'protocol/fake_connection_to_host.cc',
39         'protocol/fake_connection_to_host.h',
40         'protocol/fake_datagram_socket.cc',
41         'protocol/fake_datagram_socket.h',
42         'protocol/fake_session.cc',
43         'protocol/fake_session.h',
44         'protocol/fake_stream_socket.cc',
45         'protocol/fake_stream_socket.h',
46         'protocol/protocol_mock_objects.cc',
47         'protocol/protocol_mock_objects.h',
48         'protocol/test_event_matchers.h',
49         'signaling/fake_signal_strategy.cc',
50         'signaling/fake_signal_strategy.h',
51         'signaling/mock_signal_strategy.cc',
52         'signaling/mock_signal_strategy.h',
53         'test/access_token_fetcher.cc',
54         'test/access_token_fetcher.h',
55         'test/app_remoting_report_issue_request.cc',
56         'test/app_remoting_report_issue_request.h',
57         'test/app_remoting_service_urls.cc',
58         'test/app_remoting_service_urls.h',
59         'test/chromoting_test_driver_environment.cc',
60         'test/chromoting_test_driver_environment.h',
61         'test/connection_setup_info.cc',
62         'test/connection_setup_info.h',
63         'test/fake_access_token_fetcher.cc',
64         'test/fake_access_token_fetcher.h',
65         'test/fake_app_remoting_report_issue_request.cc',
66         'test/fake_app_remoting_report_issue_request.h',
67         'test/fake_host_list_fetcher.cc',
68         'test/fake_host_list_fetcher.h',
69         'test/fake_network_dispatcher.cc',
70         'test/fake_network_dispatcher.h',
71         'test/fake_network_manager.cc',
72         'test/fake_network_manager.h',
73         'test/fake_port_allocator.cc',
74         'test/fake_port_allocator.h',
75         'test/fake_refresh_token_store.cc',
76         'test/fake_refresh_token_store.h',
77         'test/fake_remote_host_info_fetcher.cc',
78         'test/fake_remote_host_info_fetcher.h',
79         'test/fake_socket_factory.cc',
80         'test/fake_socket_factory.h',
81         'test/host_info.cc',
82         'test/host_info.h',
83         'test/host_list_fetcher.cc',
84         'test/host_list_fetcher.h',
85         'test/leaky_bucket.cc',
86         'test/leaky_bucket.h',
87         'test/mock_access_token_fetcher.cc',
88         'test/mock_access_token_fetcher.h',
89         'test/refresh_token_store.cc',
90         'test/refresh_token_store.h',
91         'test/remote_application_details.h',
92         'test/remote_connection_observer.h',
93         'test/remote_host_info.cc',
94         'test/remote_host_info.h',
95         'test/remote_host_info_fetcher.cc',
96         'test/remote_host_info_fetcher.h',
97         'test/rgb_value.cc',
98         'test/rgb_value.h',
99         'test/test_chromoting_client.cc',
100         'test/test_chromoting_client.h',
101         'test/test_video_renderer.cc',
102         'test/test_video_renderer.h',
103       ],
104       'conditions': [
105         ['enable_remoting_host == 0', {
106           'dependencies!': [
107             'remoting_host',
108           ],
109           'sources/': [
110             ['exclude', '^host/'],
111           ]
112         }],
113       ],
114     },
115     {
116       'target_name': 'chromoting_test_driver',
117       'type': '<(gtest_target_type)',
118       'dependencies': [
119         '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
120         '../testing/gtest.gyp:gtest',
121         'remoting_test_support',
122       ],
123       'sources': [
124         'test/chromoting_test_driver.cc',
125       ],
126     }, # end of target 'chromoting_test_driver'
127     {
128       'target_name': 'ar_test_driver_common',
129       'type': 'static_library',
130       'dependencies': [
131         '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
132         '../testing/gtest.gyp:gtest',
133         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
134         'remoting_test_support',
135       ],
136       'sources': [
137         'test/app_remoting_connected_client_fixture.cc',
138         'test/app_remoting_connected_client_fixture.h',
139         'test/app_remoting_connection_helper.cc',
140         'test/app_remoting_connection_helper.h',
141         'test/app_remoting_latency_test_fixture.cc',
142         'test/app_remoting_latency_test_fixture.h',
143         'test/app_remoting_test_driver_environment.cc',
144         'test/app_remoting_test_driver_environment.h',
145       ],
146     },  # end of target 'ar_test_driver_common'
147     {
148       # An external version of the test driver tool which includes minimal tests
149       'target_name': 'ar_sample_test_driver',
150       'type': '<(gtest_target_type)',
151       'dependencies': [
152         'ar_test_driver_common',
153         '../testing/gtest.gyp:gtest',
154       ],
155       'sources': [
156         'test/app_remoting_test_driver.cc',
157         'test/app_remoting_test_driver_environment_app_details.cc',
158       ],
159     },  # end of target 'ar_sample_test_driver'
161     # Remoting unit tests
162     {
163       # GN version: //remoting:remoting_unittests
164       # Note that many of the sources are broken out into subdir-specific unit
165       # test source set targets that then GN version then brings together.
166       'target_name': 'remoting_unittests',
167       'type': '<(gtest_target_type)',
168       'dependencies': [
169         '../base/base.gyp:base',
170         '../base/base.gyp:base_i18n',
171         '../base/base.gyp:test_support_base',
172         '../components/components.gyp:policy',
173         '../ipc/ipc.gyp:ipc',
174         '../net/net.gyp:net_test_support',
175         '../ppapi/ppapi.gyp:ppapi_cpp',
176         '../testing/gmock.gyp:gmock',
177         '../testing/gtest.gyp:gtest',
178         '../third_party/libyuv/libyuv.gyp:libyuv',
179         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
180         '../ui/base/ui_base.gyp:ui_base',
181         '../ui/gfx/gfx.gyp:gfx',
182         '../ui/gfx/gfx.gyp:gfx_geometry',
183         'ar_test_driver_common',
184         'remoting_base',
185         'remoting_breakpad',
186         'remoting_client',
187         'remoting_client_plugin',
188         'remoting_host',
189         'remoting_host_setup_base',
190         'remoting_it2me_host_static',
191         'remoting_native_messaging_base',
192         'remoting_protocol',
193         'remoting_resources',
194         'remoting_test_support',
195       ],
196       'defines': [
197         'VERSION=<(version_full)',
198       ],
199       'include_dirs': [
200         '../testing/gmock/include',
201       ],
202       'sources': [
203         # Note: sources list duplicated in GN build.
204         'base/auto_thread_task_runner_unittest.cc',
205         'base/auto_thread_unittest.cc',
206         'base/breakpad_win_unittest.cc',
207         'base/buffered_socket_writer_unittest.cc',
208         'base/capabilities_unittest.cc',
209         'base/compound_buffer_unittest.cc',
210         'base/rate_counter_unittest.cc',
211         'base/resources_unittest.cc',
212         'base/rsa_key_pair_unittest.cc',
213         'base/run_all_unittests.cc',
214         'base/running_average_unittest.cc',
215         'base/test_rsa_key_pair.h',
216         'base/typed_buffer_unittest.cc',
217         'base/util_unittest.cc',
218         'client/audio_player_unittest.cc',
219         'client/client_status_logger_unittest.cc',
220         'client/empty_cursor_filter_unittest.cc',
221         'client/key_event_mapper_unittest.cc',
222         'client/normalizing_input_filter_cros_unittest.cc',
223         'client/normalizing_input_filter_mac_unittest.cc',
224         'client/server_log_entry_client_unittest.cc',
225         'client/touch_input_scaler_unittest.cc',
226         'codec/audio_encoder_opus_unittest.cc',
227         'codec/codec_test.cc',
228         'codec/codec_test.h',
229         'codec/video_decoder_vpx_unittest.cc',
230         'codec/video_encoder_helper_unittest.cc',
231         'codec/video_encoder_verbatim_unittest.cc',
232         'codec/video_encoder_vpx_unittest.cc',
233         'host/audio_pump_unittest.cc',
234         'host/audio_silence_detector_unittest.cc',
235         'host/backoff_timer_unittest.cc',
236         'host/branding.cc',
237         'host/branding.h',
238         'host/capture_scheduler_unittest.cc',
239         'host/chromeos/aura_desktop_capturer_unittest.cc',
240         'host/chromeos/clipboard_aura_unittest.cc',
241         'host/chromoting_host_context_unittest.cc',
242         'host/chromoting_host_unittest.cc',
243         'host/client_session_unittest.cc',
244         'host/config_file_watcher_unittest.cc',
245         'host/daemon_process_unittest.cc',
246         'host/desktop_process_unittest.cc',
247         'host/desktop_shape_tracker_unittest.cc',
248         'host/gcd_rest_client_unittest.cc',
249         'host/gcd_state_updater_unittest.cc',
250         'host/gnubby_auth_handler_posix_unittest.cc',
251         'host/heartbeat_sender_unittest.cc',
252         'host/host_change_notification_listener_unittest.cc',
253         'host/host_config_unittest.cc',
254         'host/host_extension_session_manager_unittest.cc',
255         'host/host_mock_objects.cc',
256         'host/host_status_logger_unittest.cc',
257         'host/ipc_desktop_environment_unittest.cc',
258         'host/it2me/it2me_confirmation_dialog_proxy_unittest.cc',
259         'host/it2me/it2me_native_messaging_host_unittest.cc',
260         'host/linux/audio_pipe_reader_unittest.cc',
261         'host/linux/unicode_to_keysym_unittest.cc',
262         'host/linux/x_server_clipboard_unittest.cc',
263         'host/local_input_monitor_unittest.cc',
264         'host/mouse_shape_pump_unittest.cc',
265         'host/native_messaging/native_messaging_reader_unittest.cc',
266         'host/native_messaging/native_messaging_writer_unittest.cc',
267         'host/pairing_registry_delegate_linux_unittest.cc',
268         'host/pairing_registry_delegate_win_unittest.cc',
269         'host/pin_hash_unittest.cc',
270         'host/policy_watcher_unittest.cc',
271         'host/register_support_host_request_unittest.cc',
272         'host/remote_input_filter_unittest.cc',
273         'host/resizing_host_observer_unittest.cc',
274         'host/screen_resolution_unittest.cc',
275         'host/server_log_entry_host_unittest.cc',
276         'host/setup/me2me_native_messaging_host.cc',
277         'host/setup/me2me_native_messaging_host.h',
278         'host/setup/me2me_native_messaging_host_unittest.cc',
279         'host/setup/mock_oauth_client.cc',
280         'host/setup/mock_oauth_client.h',
281         'host/setup/oauth_helper_unittest.cc',
282         'host/setup/pin_validator_unittest.cc',
283         'host/shaped_desktop_capturer_unittest.cc',
284         'host/third_party_auth_config_unittest.cc',
285         'host/token_validator_factory_impl_unittest.cc',
286         'host/touch_injector_win_unittest.cc',
287         'host/video_frame_pump_unittest.cc',
288         'host/video_frame_recorder_unittest.cc',
289         'host/win/rdp_client_unittest.cc',
290         'host/win/worker_process_launcher.cc',
291         'host/win/worker_process_launcher.h',
292         'host/win/worker_process_launcher_unittest.cc',
293         'protocol/authenticator_test_base.cc',
294         'protocol/authenticator_test_base.h',
295         'protocol/channel_multiplexer_unittest.cc',
296         'protocol/channel_socket_adapter_unittest.cc',
297         'protocol/chromium_socket_factory_unittest.cc',
298         'protocol/client_video_dispatcher_unittest.cc',
299         'protocol/clipboard_echo_filter_unittest.cc',
300         'protocol/clipboard_filter_unittest.cc',
301         'protocol/connection_tester.cc',
302         'protocol/connection_tester.h',
303         'protocol/connection_to_client_unittest.cc',
304         'protocol/content_description_unittest.cc',
305         'protocol/input_event_tracker_unittest.cc',
306         'protocol/input_filter_unittest.cc',
307         'protocol/jingle_messages_unittest.cc',
308         'protocol/jingle_session_unittest.cc',
309         'protocol/message_decoder_unittest.cc',
310         'protocol/message_reader_unittest.cc',
311         'protocol/monitored_video_stub_unittest.cc',
312         'protocol/mouse_input_filter_unittest.cc',
313         'protocol/negotiating_authenticator_unittest.cc',
314         'protocol/pairing_registry_unittest.cc',
315         'protocol/port_range_unittest.cc',
316         'protocol/ppapi_module_stub.cc',
317         'protocol/pseudotcp_adapter_unittest.cc',
318         'protocol/ssl_hmac_channel_authenticator_unittest.cc',
319         'protocol/third_party_authenticator_unittest.cc',
320         'protocol/v2_authenticator_unittest.cc',
321         'signaling/iq_sender_unittest.cc',
322         'signaling/jid_util_unittest.cc',
323         'signaling/log_to_server_unittest.cc',
324         'signaling/push_notification_subscriber_unittest.cc',
325         'signaling/server_log_entry_unittest.cc',
326         'signaling/server_log_entry_unittest.h',
327         'signaling/xmpp_login_handler_unittest.cc',
328         'signaling/xmpp_stream_parser_unittest.cc',
329         'signaling/xmpp_signal_strategy_unittest.cc',
330         'test/access_token_fetcher_unittest.cc',
331         'test/app_remoting_report_issue_request_unittest.cc',
332         'test/chromoting_test_driver_environment_unittest.cc',
333         'test/host_list_fetcher_unittest.cc',
334         'test/remote_host_info_fetcher_unittest.cc',
335         'test/test_chromoting_client_unittest.cc',
336         'test/test_video_renderer_unittest.cc',
338         # TODO(sergeyu): app_remoting_test_driver_environment_unittest.cc
339         # depends on ar_test_driver_common target and that target implicitly
340         # depends on app_remoting_test_driver_environment_app_details.cc to
341         # allow some parameters to be overridden (i.e. *app_details.cc file can
342         # be replace with a different one). This means that app_deails.cc file
343         # has to be included here explicitly. Fix
344         # app_remoting_test_driver_environment.cc to avoid this implicit
345         # dependency on *app_details.cc .
346         # http://crbug.com/510887
347         'test/app_remoting_test_driver_environment_app_details.cc',
348         'test/app_remoting_test_driver_environment_unittest.cc',
349       ],
350       'conditions': [
351         [ 'OS=="win"', {
352           'defines': [
353             '_ATL_NO_EXCEPTIONS',
354           ],
355           'include_dirs': [
356             '../breakpad/src',
357           ],
358           'link_settings': {
359             'libraries': [
360               '-lrpcrt4.lib',
361               '-lwtsapi32.lib',
362             ],
363           },
364         }],
365         [ 'OS=="android"', {
366           'dependencies!': [
367             'remoting_client_plugin',
368           ],
369         }],
370         [ 'OS=="android"', {
371           'dependencies': [
372             '../testing/android/native_test.gyp:native_test_native_code',
373           ],
374         }],
375         [ 'chromeos==0', {
376           'sources!': [
377             'host/chromeos/aura_desktop_capturer_unittest.cc',
378             'host/clipboard_aura_unittest.cc',
379           ],
380         }, { # chromeos==1
381           'sources!': [
382             'host/linux/x_server_clipboard_unittest.cc',
383             'host/local_input_monitor_unittest.cc',
384           ],
385         }],
386         [ 'use_ozone==1', {
387           'sources!': [
388             'host/local_input_monitor_unittest.cc',
389           ],
390         }],
391         ['enable_remoting_host == 0', {
392           'dependencies!': [
393             'remoting_host',
394             'remoting_host_setup_base',
395             'remoting_it2me_host_static',
396             'remoting_native_messaging_base',
397           ],
398           'sources/': [
399             ['exclude', '^codec/'],
400             ['exclude', '^host/'],
401             ['exclude', '^base/resources_unittest\\.cc$'],
402           ]
403         }],
404         [ 'OS == "linux" and use_allocator!="none"', {
405           'dependencies': [
406             '../base/allocator/allocator.gyp:allocator',
407           ],
408         }],
409       ],  # end of 'conditions'
410     },  # end of target 'remoting_unittests'
411     {
412       # GN version: //remoting/webapp:browser_test_resources
413       'target_name': 'remoting_browser_test_resources',
414       'type': 'none',
415       'copies': [
416         {
417           'destination': '<(PRODUCT_DIR)/remoting/browser_test_resources',
418             'files': [
419               '<@(remoting_webapp_browsertest_main_html_extra_files)',
420             ],
421         },
422       ], # end of copies
423     },  # end of target 'remoting_browser_test_resources'
424     {
425       'target_name': 'remoting_webapp_browser_test_main_html',
426       'type': 'none',
427       'actions': [
428         {
429           'action_name': 'Build Remoting Webapp Browser test main.html',
430           'inputs': [
431             'webapp/build-html.py',
432             '<(remoting_webapp_template_main)',
433             '<@(remoting_webapp_template_files)',
434             '<@(remoting_webapp_crd_main_html_all_js_files)',
435             '<@(remoting_webapp_browsertest_main_html_extra_files)',
436           ],
437           'outputs': [
438             '<(SHARED_INTERMEDIATE_DIR)/browser_test/main.html',
439           ],
440           'action': [
441             'python', 'webapp/build-html.py',
442             '<(SHARED_INTERMEDIATE_DIR)/browser_test/main.html',
443             '<(remoting_webapp_template_main)',
444             '--template-dir', '<(DEPTH)/remoting',
445             '--templates', '<@(remoting_webapp_template_files)',
446             '--js',
447             '<@(remoting_webapp_crd_main_html_all_js_files)',
448             '<@(remoting_webapp_browsertest_main_html_extra_files)',
449           ],
450         },
451       ],  # end of actions
452     },  # end of target 'remoting_webapp_browser_test_html'
453     {
454       # GN version: //remoting/webapp:unit_tests
455       'target_name': 'remoting_webapp_unittests',
456       'type': 'none',
457       'variables': {
458         'output_dir': '<(PRODUCT_DIR)/remoting/unittests',
459         'webapp_js_files': [
460           '<@(remoting_webapp_unittest_html_all_js_files)',
461           '<@(remoting_webapp_wcs_sandbox_html_js_files)',
462           '<@(remoting_webapp_background_html_js_files)',
463         ]
464       },
465       'copies': [
466         {
467           # GN version: //remoting/webapp:qunit
468           'destination': '<(output_dir)/qunit',
469           'files': [
470             '../third_party/qunit/src/browser_test_harness.js',
471             '../third_party/qunit/src/qunit.css',
472             '../third_party/qunit/src/qunit.js',
473           ],
474         },
475         {
476           # GN version: //remoting/webapp:blanketjs
477           'destination': '<(output_dir)/blanketjs',
478           'files': [
479             '../third_party/blanketjs/src/blanket.js',
480             '../third_party/blanketjs/src/qunit_adapter.js',
481           ],
482         },
483         {
484           # GN version: //remoting/webapp:sinonjs
485           'destination': '<(output_dir)/sinonjs',
486           'files': [
487             '../third_party/sinonjs/src/sinon.js',
488             '../third_party/sinonjs/src/sinon-qunit.js',
489           ],
490         },
491         {
492           # GN version: //remoting/webapp:js_files
493           'destination': '<(output_dir)',
494           'files': [
495             '<@(webapp_js_files)',
496             '<@(remoting_webapp_unittests_all_files)',
497           ],
498         },
499       ],
500       'actions': [
501         {
502           'action_name': 'Build Remoting Webapp unittests.html',
503           'inputs': [
504             'webapp/build-html.py',
505             '<(remoting_webapp_unittests_template_main)',
506             '<@(webapp_js_files)',
507             '<@(remoting_webapp_unittests_all_js_files)'
508           ],
509           'outputs': [
510             '<(output_dir)/unittests.html',
511           ],
512           'action': [
513             'python', 'webapp/build-html.py',
514             '<@(_outputs)',
515             '<(remoting_webapp_unittests_template_main)',
516             # GYP automatically removes subsequent duplicated command line
517             # arguments.  Therefore, the excludejs flag must be set before the
518             # instrumentedjs flag or else GYP will ignore the files in the
519             # exclude list.
520             '--exclude-js', '<@(remoting_webapp_unittests_exclude_js_files)',
521             '--js', '<@(remoting_webapp_unittests_all_js_files)',
522             '--instrument-js', '<@(webapp_js_files)',
523            ],
524         },
525       ],
526     },  # end of target 'remoting_webapp_unittest'
527   ],  # end of targets
529   'conditions': [
530     ['enable_remoting_host==1', {
531       'targets': [
532         # Remoting performance tests
533         {
534           'target_name': 'remoting_perftests',
535           'type': '<(gtest_target_type)',
536           'dependencies': [
537             '../base/base.gyp:base',
538             '../base/base.gyp:test_support_base',
539             '../testing/gtest.gyp:gtest',
540             '../third_party/webrtc/modules/modules.gyp:desktop_capture',
541             '../third_party/libjingle/libjingle.gyp:libjingle',
542             'remoting_base',
543             'remoting_test_support',
544           ],
545           'defines': [
546             'VERSION=<(version_full)',
547           ],
548           'include_dirs': [
549             '../testing/gmock/include',
550           ],
551           'sources': [
552             'base/run_all_unittests.cc',
553             'codec/codec_test.cc',
554             'codec/codec_test.h',
555             'codec/video_encoder_vpx_perftest.cc',
556             'test/protocol_perftest.cc',
557           ],
558           'conditions': [
559             [ 'OS=="mac" or (OS=="linux" and chromeos==0)', {
560               # RunAllTests calls chrome::RegisterPathProvider() under Mac and
561               # Linux, so we need the chrome_common.gypi dependency.
562               'dependencies': [
563                 '../chrome/common_constants.gyp:common_constants',
564               ],
565             }],
566             [ 'OS=="android"', {
567               'dependencies': [
568                 '../testing/android/native_test.gyp:native_test_native_code',
569               ],
570             }],
571             [ 'OS == "linux" and use_allocator!="none"', {
572               'dependencies': [
573                 '../base/allocator/allocator.gyp:allocator',
574               ],
575             }],
576           ],  # end of 'conditions'
577         },  # end of target 'remoting_perftests'
578       ]
579     }],  # end of 'enable_remoting_host'
580     ['disable_nacl==0 and disable_nacl_untrusted==0', {
581       'targets': [
582         {
583           'target_name': 'remoting_webapp_browser_test',
584           'type': 'none',
585           'variables': {
586             'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.browsertest.v2',
587             'zip_path': '<(PRODUCT_DIR)/remoting-webapp.browsertest.v2.zip',
588             'webapp_type': 'v2_pnacl',
589             'main_html_file': '<(SHARED_INTERMEDIATE_DIR)/browser_test/main.html',
590             'extra_files': [
591               'webapp/crd/remoting_client_pnacl.nmf.jinja2',
592               '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe',
593               '<@(remoting_webapp_browsertest_main_html_extra_files)',
594             ],
595           },
596           'dependencies': [
597             'remoting_nacl.gyp:remoting_client_plugin_nacl',
598             'remoting_webapp_browser_test_main_html',
599           ],
600           'includes': [ 'remoting_webapp.gypi', ],
601         },  # end of target 'remoting_webapp_browser_test'
602       ]
603     }],
604     ['test_isolation_mode != "noop"', {
605       'targets': [
606         {
607           'target_name': 'remoting_unittests_run',
608           'type': 'none',
609           'dependencies': [
610             'remoting_unittests',
611           ],
612           'includes': [
613             '../build/isolate.gypi',
614           ],
615           'sources': [
616             'remoting_unittests.isolate',
617           ],
618         },
619       ],
620     }],
621   ] # end of 'conditions'