| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 'export_dependent_settings': [ | 375 'export_dependent_settings': [ |
| 376 'chromoting_jingle_glue', | 376 'chromoting_jingle_glue', |
| 377 ], | 377 ], |
| 378 'sources': [ | 378 'sources': [ |
| 379 'protocol/buffered_socket_writer.cc', | 379 'protocol/buffered_socket_writer.cc', |
| 380 'protocol/buffered_socket_writer.h', | 380 'protocol/buffered_socket_writer.h', |
| 381 'protocol/client_control_sender.cc', | 381 'protocol/client_control_sender.cc', |
| 382 'protocol/client_control_Sender.h', | 382 'protocol/client_control_Sender.h', |
| 383 'protocol/client_message_dispatcher.cc', | 383 'protocol/client_message_dispatcher.cc', |
| 384 'protocol/client_message_dispatcher.h', | 384 'protocol/client_message_dispatcher.h', |
| 385 'protocol/client_stub.cc', |
| 385 'protocol/client_stub.h', | 386 'protocol/client_stub.h', |
| 386 'protocol/connection_to_client.cc', | 387 'protocol/connection_to_client.cc', |
| 387 'protocol/connection_to_client.h', | 388 'protocol/connection_to_client.h', |
| 388 'protocol/connection_to_host.cc', | 389 'protocol/connection_to_host.cc', |
| 389 'protocol/connection_to_host.h', | 390 'protocol/connection_to_host.h', |
| 390 'protocol/host_control_sender.cc', | 391 'protocol/host_control_sender.cc', |
| 391 'protocol/host_control_sender.h', | 392 'protocol/host_control_sender.h', |
| 392 'protocol/host_message_dispatcher.cc', | 393 'protocol/host_message_dispatcher.cc', |
| 393 'protocol/host_message_dispatcher.h', | 394 'protocol/host_message_dispatcher.h', |
| 395 'protocol/host_stub.cc', |
| 394 'protocol/host_stub.h', | 396 'protocol/host_stub.h', |
| 395 'protocol/input_sender.cc', | 397 'protocol/input_sender.cc', |
| 396 'protocol/input_sender.h', | 398 'protocol/input_sender.h', |
| 399 'protocol/input_stub.cc', |
| 400 'protocol/input_stub.h', |
| 397 'protocol/jingle_session.cc', | 401 'protocol/jingle_session.cc', |
| 398 'protocol/jingle_session.h', | 402 'protocol/jingle_session.h', |
| 399 'protocol/jingle_session_manager.cc', | 403 'protocol/jingle_session_manager.cc', |
| 400 'protocol/jingle_session_manager.h', | 404 'protocol/jingle_session_manager.h', |
| 401 'protocol/message_decoder.cc', | 405 'protocol/message_decoder.cc', |
| 402 'protocol/message_decoder.h', | 406 'protocol/message_decoder.h', |
| 403 'protocol/message_reader.cc', | 407 'protocol/message_reader.cc', |
| 404 'protocol/message_reader.h', | 408 'protocol/message_reader.h', |
| 405 'protocol/protobuf_video_reader.cc', | 409 'protocol/protobuf_video_reader.cc', |
| 406 'protocol/protobuf_video_reader.h', | 410 'protocol/protobuf_video_reader.h', |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 ], # end of 'conditions' | 602 ], # end of 'conditions' |
| 599 }, # end of target 'chromoting_unittests' | 603 }, # end of target 'chromoting_unittests' |
| 600 ], # end of targets | 604 ], # end of targets |
| 601 } | 605 } |
| 602 | 606 |
| 603 # Local Variables: | 607 # Local Variables: |
| 604 # tab-width:2 | 608 # tab-width:2 |
| 605 # indent-tabs-mode:nil | 609 # indent-tabs-mode:nil |
| 606 # End: | 610 # End: |
| 607 # vim: set expandtab tabstop=2 shiftwidth=2: | 611 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |