OLD | NEW |
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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
10 'run_jscompile%': 0, | 10 'run_jscompile%': 0, |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 '"<(webapp_locale_dir)/@{json_suffix}/messages.json" ' | 90 '"<(webapp_locale_dir)/@{json_suffix}/messages.json" ' |
91 '--print_only <(remoting_locales))', | 91 '--print_only <(remoting_locales))', |
92 ], | 92 ], |
93 }, | 93 }, |
94 | 94 |
95 'includes': [ | 95 'includes': [ |
96 '../chrome/js_unittest_vars.gypi', | 96 '../chrome/js_unittest_vars.gypi', |
97 'remoting_android.gypi', | 97 'remoting_android.gypi', |
98 'remoting_client.gypi', | 98 'remoting_client.gypi', |
99 'remoting_host.gypi', | 99 'remoting_host.gypi', |
| 100 'remoting_srcs.gypi', |
100 'remoting_test.gypi', | 101 'remoting_test.gypi', |
101 'remoting_version.gypi', | 102 'remoting_version.gypi', |
102 'remoting_webapp_files.gypi', | 103 'remoting_webapp_files.gypi', |
103 ], | 104 ], |
104 | 105 |
105 'target_defaults': { | 106 'target_defaults': { |
106 'defines': [ | 107 'defines': [ |
107 'BINARY_CORE=1', | 108 'BINARY_CORE=1', |
108 'BINARY_DESKTOP=2', | 109 'BINARY_DESKTOP=2', |
109 'BINARY_HOST_ME2ME=3', | 110 'BINARY_HOST_ME2ME=3', |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 'export_dependent_settings': [ | 429 'export_dependent_settings': [ |
429 '../base/base.gyp:base', | 430 '../base/base.gyp:base', |
430 '../net/net.gyp:net', | 431 '../net/net.gyp:net', |
431 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 432 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
432 'proto/chromotocol.gyp:chromotocol_proto_lib', | 433 'proto/chromotocol.gyp:chromotocol_proto_lib', |
433 ], | 434 ], |
434 # This target needs a hard dependency because dependent targets | 435 # This target needs a hard dependency because dependent targets |
435 # depend on chromotocol_proto_lib for headers. | 436 # depend on chromotocol_proto_lib for headers. |
436 'hard_dependency': 1, | 437 'hard_dependency': 1, |
437 'sources': [ | 438 'sources': [ |
438 'base/auth_token_util.cc', | 439 '<@(remoting_base_sources)', |
439 'base/auth_token_util.h', | |
440 'base/auto_thread.cc', | |
441 'base/auto_thread.h', | |
442 'base/auto_thread_task_runner.cc', | |
443 'base/auto_thread_task_runner.h', | |
444 'base/capabilities.cc', | |
445 'base/capabilities.h', | |
446 'base/compound_buffer.cc', | |
447 'base/compound_buffer.h', | |
448 'base/constants.cc', | |
449 'base/constants.h', | |
450 'base/plugin_thread_task_runner.cc', | |
451 'base/plugin_thread_task_runner.h', | |
452 'base/rate_counter.cc', | |
453 'base/rate_counter.h', | |
454 'base/resources.h', | |
455 'base/resources_linux.cc', | |
456 'base/resources_mac.cc', | |
457 'base/resources_win.cc', | |
458 'base/rsa_key_pair.cc', | |
459 'base/rsa_key_pair.h', | |
460 'base/running_average.cc', | |
461 'base/running_average.h', | |
462 'base/scoped_sc_handle_win.h', | |
463 'base/socket_reader.cc', | |
464 'base/socket_reader.h', | |
465 'base/typed_buffer.h', | |
466 'base/url_request_context.cc', | |
467 'base/url_request_context.h', | |
468 'base/util.cc', | |
469 'base/util.h', | |
470 'base/vlog_net_log.cc', | |
471 'base/vlog_net_log.h', | |
472 'codec/audio_decoder.cc', | |
473 'codec/audio_decoder.h', | |
474 'codec/audio_decoder_opus.cc', | |
475 'codec/audio_decoder_opus.h', | |
476 'codec/audio_decoder_verbatim.cc', | |
477 'codec/audio_decoder_verbatim.h', | |
478 'codec/audio_encoder.h', | |
479 'codec/audio_encoder_opus.cc', | |
480 'codec/audio_encoder_opus.h', | |
481 'codec/audio_encoder_verbatim.cc', | |
482 'codec/audio_encoder_verbatim.h', | |
483 'codec/scoped_vpx_codec.cc', | |
484 'codec/scoped_vpx_codec.h', | |
485 'codec/video_decoder.h', | |
486 'codec/video_decoder_verbatim.cc', | |
487 'codec/video_decoder_verbatim.h', | |
488 'codec/video_decoder_vpx.cc', | |
489 'codec/video_decoder_vpx.h', | |
490 'codec/video_encoder.h', | |
491 'codec/video_encoder_verbatim.cc', | |
492 'codec/video_encoder_verbatim.h', | |
493 'codec/video_encoder_vpx.cc', | |
494 'codec/video_encoder_vpx.h', | |
495 ], | 440 ], |
496 }, # end of target 'remoting_base' | 441 }, # end of target 'remoting_base' |
497 | 442 |
498 { | 443 { |
499 'target_name': 'remoting_protocol', | 444 'target_name': 'remoting_protocol', |
500 'type': 'static_library', | 445 'type': 'static_library', |
501 'variables': { 'enable_wexit_time_destructors': 1, }, | 446 'variables': { 'enable_wexit_time_destructors': 1, }, |
502 'dependencies': [ | 447 'dependencies': [ |
503 '../base/base.gyp:base', | 448 '../base/base.gyp:base', |
504 '../crypto/crypto.gyp:crypto', | 449 '../crypto/crypto.gyp:crypto', |
505 '../jingle/jingle.gyp:jingle_glue', | 450 '../jingle/jingle.gyp:jingle_glue', |
506 '../jingle/jingle.gyp:notifier', | 451 '../jingle/jingle.gyp:notifier', |
507 '../net/net.gyp:net', | 452 '../net/net.gyp:net', |
508 '../third_party/libjingle/libjingle.gyp:libjingle', | 453 '../third_party/libjingle/libjingle.gyp:libjingle', |
509 'remoting_base', | 454 'remoting_base', |
510 ], | 455 ], |
511 'export_dependent_settings': [ | 456 'export_dependent_settings': [ |
512 '../third_party/libjingle/libjingle.gyp:libjingle', | 457 '../third_party/libjingle/libjingle.gyp:libjingle', |
513 ], | 458 ], |
514 'sources': [ | 459 'sources': [ |
515 'jingle_glue/chromium_port_allocator.cc', | 460 '<@(remoting_protocol_sources)', |
516 'jingle_glue/chromium_port_allocator.h', | |
517 'jingle_glue/chromium_socket_factory.cc', | |
518 'jingle_glue/chromium_socket_factory.h', | |
519 'jingle_glue/iq_sender.cc', | |
520 'jingle_glue/iq_sender.h', | |
521 'jingle_glue/jingle_info_request.cc', | |
522 'jingle_glue/jingle_info_request.h', | |
523 'jingle_glue/network_settings.h', | |
524 'jingle_glue/signal_strategy.h', | |
525 'jingle_glue/xmpp_signal_strategy.cc', | |
526 'jingle_glue/xmpp_signal_strategy.h', | |
527 'protocol/audio_reader.cc', | |
528 'protocol/audio_reader.h', | |
529 'protocol/audio_stub.h', | |
530 'protocol/audio_writer.cc', | |
531 'protocol/audio_writer.h', | |
532 'protocol/auth_util.cc', | |
533 'protocol/auth_util.h', | |
534 'protocol/authentication_method.cc', | |
535 'protocol/authentication_method.h', | |
536 'protocol/authenticator.cc', | |
537 'protocol/authenticator.h', | |
538 'protocol/buffered_socket_writer.cc', | |
539 'protocol/buffered_socket_writer.h', | |
540 'protocol/channel_authenticator.h', | |
541 'protocol/channel_dispatcher_base.cc', | |
542 'protocol/channel_dispatcher_base.h', | |
543 'protocol/channel_multiplexer.cc', | |
544 'protocol/channel_multiplexer.h', | |
545 'protocol/client_control_dispatcher.cc', | |
546 'protocol/client_control_dispatcher.h', | |
547 'protocol/client_event_dispatcher.cc', | |
548 'protocol/client_event_dispatcher.h', | |
549 'protocol/client_stub.h', | |
550 'protocol/clipboard_echo_filter.cc', | |
551 'protocol/clipboard_echo_filter.h', | |
552 'protocol/clipboard_filter.cc', | |
553 'protocol/clipboard_filter.h', | |
554 'protocol/clipboard_stub.h', | |
555 'protocol/clipboard_thread_proxy.cc', | |
556 'protocol/clipboard_thread_proxy.h', | |
557 'protocol/connection_to_client.cc', | |
558 'protocol/connection_to_client.h', | |
559 'protocol/connection_to_host.cc', | |
560 'protocol/connection_to_host.h', | |
561 'protocol/content_description.cc', | |
562 'protocol/content_description.h', | |
563 'protocol/errors.h', | |
564 'protocol/host_control_dispatcher.cc', | |
565 'protocol/host_control_dispatcher.h', | |
566 'protocol/host_event_dispatcher.cc', | |
567 'protocol/host_event_dispatcher.h', | |
568 'protocol/host_stub.h', | |
569 'protocol/input_event_tracker.cc', | |
570 'protocol/input_event_tracker.h', | |
571 'protocol/input_filter.cc', | |
572 'protocol/input_filter.h', | |
573 'protocol/input_stub.h', | |
574 'protocol/it2me_host_authenticator_factory.cc', | |
575 'protocol/it2me_host_authenticator_factory.h', | |
576 'protocol/jingle_messages.cc', | |
577 'protocol/jingle_messages.h', | |
578 'protocol/jingle_session.cc', | |
579 'protocol/jingle_session.h', | |
580 'protocol/jingle_session_manager.cc', | |
581 'protocol/jingle_session_manager.h', | |
582 'protocol/libjingle_transport_factory.cc', | |
583 'protocol/libjingle_transport_factory.h', | |
584 'protocol/me2me_host_authenticator_factory.cc', | |
585 'protocol/me2me_host_authenticator_factory.h', | |
586 'protocol/message_decoder.cc', | |
587 'protocol/message_decoder.h', | |
588 'protocol/message_reader.cc', | |
589 'protocol/message_reader.h', | |
590 'protocol/mouse_input_filter.cc', | |
591 'protocol/mouse_input_filter.h', | |
592 'protocol/name_value_map.h', | |
593 'protocol/negotiating_authenticator_base.cc', | |
594 'protocol/negotiating_authenticator_base.h', | |
595 'protocol/negotiating_client_authenticator.cc', | |
596 'protocol/negotiating_client_authenticator.h', | |
597 'protocol/negotiating_host_authenticator.cc', | |
598 'protocol/negotiating_host_authenticator.h', | |
599 'protocol/pairing_authenticator_base.cc', | |
600 'protocol/pairing_authenticator_base.h', | |
601 'protocol/pairing_client_authenticator.cc', | |
602 'protocol/pairing_client_authenticator.h', | |
603 'protocol/pairing_host_authenticator.cc', | |
604 'protocol/pairing_host_authenticator.h', | |
605 'protocol/pairing_registry.cc', | |
606 'protocol/pairing_registry.h', | |
607 'protocol/protobuf_video_reader.cc', | |
608 'protocol/protobuf_video_reader.h', | |
609 'protocol/protobuf_video_writer.cc', | |
610 'protocol/protobuf_video_writer.h', | |
611 'protocol/session.h', | |
612 'protocol/session_config.cc', | |
613 'protocol/session_config.h', | |
614 'protocol/session_manager.h', | |
615 'protocol/ssl_hmac_channel_authenticator.cc', | |
616 'protocol/ssl_hmac_channel_authenticator.h', | |
617 'protocol/transport.cc', | |
618 'protocol/transport.h', | |
619 'protocol/util.cc', | |
620 'protocol/util.h', | |
621 'protocol/third_party_authenticator_base.cc', | |
622 'protocol/third_party_authenticator_base.h', | |
623 'protocol/third_party_client_authenticator.cc', | |
624 'protocol/third_party_client_authenticator.h', | |
625 'protocol/third_party_host_authenticator.cc', | |
626 'protocol/third_party_host_authenticator.h', | |
627 'protocol/v2_authenticator.cc', | |
628 'protocol/v2_authenticator.h', | |
629 'protocol/video_reader.cc', | |
630 'protocol/video_reader.h', | |
631 'protocol/video_stub.h', | |
632 'protocol/video_writer.cc', | |
633 'protocol/video_writer.h', | |
634 ], | 461 ], |
635 }, # end of target 'remoting_protocol' | 462 }, # end of target 'remoting_protocol' |
636 ], # end of targets | 463 ], # end of targets |
637 } | 464 } |
OLD | NEW |