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