OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 'protocol/jingle_session_manager.cc', | 385 'protocol/jingle_session_manager.cc', |
386 'protocol/jingle_session_manager.h', | 386 'protocol/jingle_session_manager.h', |
387 'protocol/message_decoder.cc', | 387 'protocol/message_decoder.cc', |
388 'protocol/message_decoder.h', | 388 'protocol/message_decoder.h', |
389 'protocol/message_reader.cc', | 389 'protocol/message_reader.cc', |
390 'protocol/message_reader.h', | 390 'protocol/message_reader.h', |
391 'protocol/protobuf_video_reader.cc', | 391 'protocol/protobuf_video_reader.cc', |
392 'protocol/protobuf_video_reader.h', | 392 'protocol/protobuf_video_reader.h', |
393 'protocol/protobuf_video_writer.cc', | 393 'protocol/protobuf_video_writer.cc', |
394 'protocol/protobuf_video_writer.h', | 394 'protocol/protobuf_video_writer.h', |
| 395 'protocol/ref_counted_task.cc', |
| 396 'protocol/ref_counted_task.h', |
395 'protocol/rtcp_writer.cc', | 397 'protocol/rtcp_writer.cc', |
396 'protocol/rtcp_writer.h', | 398 'protocol/rtcp_writer.h', |
397 'protocol/rtp_reader.cc', | 399 'protocol/rtp_reader.cc', |
398 'protocol/rtp_reader.h', | 400 'protocol/rtp_reader.h', |
399 'protocol/rtp_utils.cc', | 401 'protocol/rtp_utils.cc', |
400 'protocol/rtp_utils.h', | 402 'protocol/rtp_utils.h', |
401 'protocol/rtp_video_reader.cc', | 403 'protocol/rtp_video_reader.cc', |
402 'protocol/rtp_video_reader.h', | 404 'protocol/rtp_video_reader.h', |
403 'protocol/rtp_video_writer.cc', | 405 'protocol/rtp_video_writer.cc', |
404 'protocol/rtp_video_writer.h', | 406 'protocol/rtp_video_writer.h', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 'jingle_glue/jingle_client_unittest.cc', | 481 'jingle_glue/jingle_client_unittest.cc', |
480 'jingle_glue/jingle_thread_unittest.cc', | 482 'jingle_glue/jingle_thread_unittest.cc', |
481 'jingle_glue/iq_request_unittest.cc', | 483 'jingle_glue/iq_request_unittest.cc', |
482 'jingle_glue/mock_objects.h', | 484 'jingle_glue/mock_objects.h', |
483 'jingle_glue/stream_socket_adapter_unittest.cc', | 485 'jingle_glue/stream_socket_adapter_unittest.cc', |
484 'protocol/connection_to_client_unittest.cc', | 486 'protocol/connection_to_client_unittest.cc', |
485 'protocol/fake_session.cc', | 487 'protocol/fake_session.cc', |
486 'protocol/fake_session.h', | 488 'protocol/fake_session.h', |
487 'protocol/jingle_session_unittest.cc', | 489 'protocol/jingle_session_unittest.cc', |
488 'protocol/message_decoder_unittest.cc', | 490 'protocol/message_decoder_unittest.cc', |
| 491 'protocol/message_reader_unittest.cc', |
489 'protocol/mock_objects.h', | 492 'protocol/mock_objects.h', |
490 'protocol/rtp_video_reader_unittest.cc', | 493 'protocol/rtp_video_reader_unittest.cc', |
491 'protocol/rtp_video_writer_unittest.cc', | 494 'protocol/rtp_video_writer_unittest.cc', |
492 'protocol/session_manager_pair.cc', | 495 'protocol/session_manager_pair.cc', |
493 'protocol/session_manager_pair.h', | 496 'protocol/session_manager_pair.h', |
494 'run_all_unittests.cc', | 497 'run_all_unittests.cc', |
495 ], | 498 ], |
496 'conditions': [ | 499 'conditions': [ |
497 ['OS=="win"', { | 500 ['OS=="win"', { |
498 'sources': [ | 501 'sources': [ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 ], # end of 'conditions' | 536 ], # end of 'conditions' |
534 }, # end of target 'chromoting_unittests' | 537 }, # end of target 'chromoting_unittests' |
535 ], # end of targets | 538 ], # end of targets |
536 } | 539 } |
537 | 540 |
538 # Local Variables: | 541 # Local Variables: |
539 # tab-width:2 | 542 # tab-width:2 |
540 # indent-tabs-mode:nil | 543 # indent-tabs-mode:nil |
541 # End: | 544 # End: |
542 # vim: set expandtab tabstop=2 shiftwidth=2: | 545 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |