| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 'dependencies': [ | 351 'dependencies': [ |
| 352 'chromoting_base', | 352 'chromoting_base', |
| 353 'chromoting_jingle_glue', | 353 'chromoting_jingle_glue', |
| 354 ], | 354 ], |
| 355 'export_dependent_settings': [ | 355 'export_dependent_settings': [ |
| 356 'chromoting_jingle_glue', | 356 'chromoting_jingle_glue', |
| 357 ], | 357 ], |
| 358 'sources': [ | 358 'sources': [ |
| 359 'protocol/buffered_socket_writer.cc', | 359 'protocol/buffered_socket_writer.cc', |
| 360 'protocol/buffered_socket_writer.h', | 360 'protocol/buffered_socket_writer.h', |
| 361 'protocol/chromotocol_config.cc', | |
| 362 'protocol/chromotocol_config.h', | |
| 363 'protocol/client_stub.h', | 361 'protocol/client_stub.h', |
| 364 'protocol/client_stub_impl.cc', | 362 'protocol/client_stub_impl.cc', |
| 365 'protocol/client_stub_impl.h', | 363 'protocol/client_stub_impl.h', |
| 366 'protocol/connection_to_client.cc', | 364 'protocol/connection_to_client.cc', |
| 367 'protocol/connection_to_client.h', | 365 'protocol/connection_to_client.h', |
| 368 'protocol/connection_to_host.h', | 366 'protocol/connection_to_host.h', |
| 369 'protocol/host_control_message_handler.h', | 367 'protocol/host_control_message_handler.h', |
| 370 'protocol/host_event_message_handler.h', | 368 'protocol/host_event_message_handler.h', |
| 371 'protocol/host_message_dispatcher.cc', | 369 'protocol/host_message_dispatcher.cc', |
| 372 'protocol/host_message_dispatcher.h', | 370 'protocol/host_message_dispatcher.h', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 388 'protocol/rtp_reader.h', | 386 'protocol/rtp_reader.h', |
| 389 'protocol/rtp_utils.cc', | 387 'protocol/rtp_utils.cc', |
| 390 'protocol/rtp_utils.h', | 388 'protocol/rtp_utils.h', |
| 391 'protocol/rtp_video_reader.cc', | 389 'protocol/rtp_video_reader.cc', |
| 392 'protocol/rtp_video_reader.h', | 390 'protocol/rtp_video_reader.h', |
| 393 'protocol/rtp_video_writer.cc', | 391 'protocol/rtp_video_writer.cc', |
| 394 'protocol/rtp_video_writer.h', | 392 'protocol/rtp_video_writer.h', |
| 395 'protocol/rtp_writer.cc', | 393 'protocol/rtp_writer.cc', |
| 396 'protocol/rtp_writer.h', | 394 'protocol/rtp_writer.h', |
| 397 'protocol/session.h', | 395 'protocol/session.h', |
| 396 'protocol/session_config.cc', |
| 397 'protocol/session_config.h', |
| 398 'protocol/session_manager.h', | 398 'protocol/session_manager.h', |
| 399 'protocol/socket_reader_base.cc', | 399 'protocol/socket_reader_base.cc', |
| 400 'protocol/socket_reader_base.h', | 400 'protocol/socket_reader_base.h', |
| 401 'protocol/stream_writer.cc', | 401 'protocol/stream_writer.cc', |
| 402 'protocol/stream_writer.h', | 402 'protocol/stream_writer.h', |
| 403 'protocol/util.cc', | 403 'protocol/util.cc', |
| 404 'protocol/util.h', | 404 'protocol/util.h', |
| 405 'protocol/video_reader.cc', | 405 'protocol/video_reader.cc', |
| 406 'protocol/video_reader.h', | 406 'protocol/video_reader.h', |
| 407 'protocol/video_stub.h', | 407 'protocol/video_stub.h', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 ], # end of 'conditions' | 517 ], # end of 'conditions' |
| 518 }, # end of target 'chromoting_unittests' | 518 }, # end of target 'chromoting_unittests' |
| 519 ], # end of targets | 519 ], # end of targets |
| 520 } | 520 } |
| 521 | 521 |
| 522 # Local Variables: | 522 # Local Variables: |
| 523 # tab-width:2 | 523 # tab-width:2 |
| 524 # indent-tabs-mode:nil | 524 # indent-tabs-mode:nil |
| 525 # End: | 525 # End: |
| 526 # vim: set expandtab tabstop=2 shiftwidth=2: | 526 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |