| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 'protocol/host_message_dispatcher.cc', | 372 'protocol/host_message_dispatcher.cc', |
| 373 'protocol/host_message_dispatcher.h', | 373 'protocol/host_message_dispatcher.h', |
| 374 'protocol/message_decoder.cc', | 374 'protocol/message_decoder.cc', |
| 375 'protocol/message_decoder.h', | 375 'protocol/message_decoder.h', |
| 376 'protocol/message_reader.cc', | 376 'protocol/message_reader.cc', |
| 377 'protocol/message_reader.h', | 377 'protocol/message_reader.h', |
| 378 'protocol/jingle_chromotocol_connection.cc', | 378 'protocol/jingle_chromotocol_connection.cc', |
| 379 'protocol/jingle_chromotocol_connection.h', | 379 'protocol/jingle_chromotocol_connection.h', |
| 380 'protocol/jingle_chromotocol_server.cc', | 380 'protocol/jingle_chromotocol_server.cc', |
| 381 'protocol/jingle_chromotocol_server.h', | 381 'protocol/jingle_chromotocol_server.h', |
| 382 'protocol/protobuf_video_reader.cc', |
| 383 'protocol/protobuf_video_reader.h', |
| 384 'protocol/protobuf_video_writer.cc', |
| 385 'protocol/protobuf_video_writer.h', |
| 382 'protocol/rtp_reader.cc', | 386 'protocol/rtp_reader.cc', |
| 383 'protocol/rtp_reader.h', | 387 'protocol/rtp_reader.h', |
| 384 'protocol/rtp_utils.cc', | 388 'protocol/rtp_utils.cc', |
| 385 'protocol/rtp_utils.h', | 389 'protocol/rtp_utils.h', |
| 390 'protocol/rtp_video_reader.cc', |
| 391 'protocol/rtp_video_reader.h', |
| 392 'protocol/rtp_video_writer.cc', |
| 393 'protocol/rtp_video_writer.h', |
| 386 'protocol/rtp_writer.cc', | 394 'protocol/rtp_writer.cc', |
| 387 'protocol/rtp_writer.h', | 395 'protocol/rtp_writer.h', |
| 388 'protocol/socket_reader_base.cc', | 396 'protocol/socket_reader_base.cc', |
| 389 'protocol/socket_reader_base.h', | 397 'protocol/socket_reader_base.h', |
| 390 'protocol/stream_writer.cc', | 398 'protocol/stream_writer.cc', |
| 391 'protocol/stream_writer.h', | 399 'protocol/stream_writer.h', |
| 392 'protocol/util.cc', | 400 'protocol/util.cc', |
| 393 'protocol/util.h', | 401 'protocol/util.h', |
| 402 'protocol/video_reader.cc', |
| 403 'protocol/video_reader.h', |
| 404 'protocol/video_stub.h', |
| 405 'protocol/video_writer.cc', |
| 406 'protocol/video_writer.h', |
| 394 ], | 407 ], |
| 395 }, # end of target 'chromoting_protocol' | 408 }, # end of target 'chromoting_protocol' |
| 396 | 409 |
| 397 { | 410 { |
| 398 'target_name': 'chromotocol_test_client', | 411 'target_name': 'chromotocol_test_client', |
| 399 'type': 'executable', | 412 'type': 'executable', |
| 400 'dependencies': [ | 413 'dependencies': [ |
| 401 'chromoting_base', | 414 'chromoting_base', |
| 402 'chromoting_protocol', | 415 'chromoting_protocol', |
| 403 ], | 416 ], |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 ], # end of 'conditions' | 512 ], # end of 'conditions' |
| 500 }, # end of target 'chromoting_unittests' | 513 }, # end of target 'chromoting_unittests' |
| 501 ], # end of targets | 514 ], # end of targets |
| 502 } | 515 } |
| 503 | 516 |
| 504 # Local Variables: | 517 # Local Variables: |
| 505 # tab-width:2 | 518 # tab-width:2 |
| 506 # indent-tabs-mode:nil | 519 # indent-tabs-mode:nil |
| 507 # End: | 520 # End: |
| 508 # vim: set expandtab tabstop=2 shiftwidth=2: | 521 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |