| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 { | 232 { |
| 233 'target_name': 'chromoting_client', | 233 'target_name': 'chromoting_client', |
| 234 'type': '<(library)', | 234 'type': '<(library)', |
| 235 'dependencies': [ | 235 'dependencies': [ |
| 236 'chromoting_base', | 236 'chromoting_base', |
| 237 'chromoting_jingle_glue', | 237 'chromoting_jingle_glue', |
| 238 ], | 238 ], |
| 239 'sources': [ | 239 'sources': [ |
| 240 'client/chromoting_client.cc', | 240 'client/chromoting_client.cc', |
| 241 'client/chromoting_client.h', | 241 'client/chromoting_client.h', |
| 242 'client/chromoting_view.cc', |
| 242 'client/chromoting_view.h', | 243 'client/chromoting_view.h', |
| 243 'client/client_config.h', | 244 'client/client_config.h', |
| 244 'client/client_context.cc', | 245 'client/client_context.cc', |
| 245 'client/client_context.h', | 246 'client/client_context.h', |
| 246 'client/client_util.cc', | 247 'client/client_util.cc', |
| 247 'client/client_util.h', | 248 'client/client_util.h', |
| 248 'client/host_connection.h', | 249 'client/host_connection.h', |
| 249 'client/input_handler.h', | 250 'client/input_handler.h', |
| 250 'client/jingle_host_connection.cc', | 251 'client/jingle_host_connection.cc', |
| 251 'client/jingle_host_connection.h', | 252 'client/jingle_host_connection.h', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'base/decoder_verbatim_unittest.cc', | 358 'base/decoder_verbatim_unittest.cc', |
| 358 'base/decoder_zlib_unittest.cc', | 359 'base/decoder_zlib_unittest.cc', |
| 359 'base/decompressor_zlib_unittest.cc', | 360 'base/decompressor_zlib_unittest.cc', |
| 360 'base/encoder_verbatim_unittest.cc', | 361 'base/encoder_verbatim_unittest.cc', |
| 361 # TODO(hclam): Enable VP8 in the build. | 362 # TODO(hclam): Enable VP8 in the build. |
| 362 #'base/encoder_vp8_unittest.cc', | 363 #'base/encoder_vp8_unittest.cc', |
| 363 'base/encoder_zlib_unittest.cc', | 364 'base/encoder_zlib_unittest.cc', |
| 364 'base/mock_objects.h', | 365 'base/mock_objects.h', |
| 365 'base/multiple_array_input_stream_unittest.cc', | 366 'base/multiple_array_input_stream_unittest.cc', |
| 366 'base/protocol_decoder_unittest.cc', | 367 'base/protocol_decoder_unittest.cc', |
| 368 'client/chromoting_view_unittest.cc', |
| 367 'client/mock_objects.h', | 369 'client/mock_objects.h', |
| 368 'host/chromoting_host_context_unittest.cc', | 370 'host/chromoting_host_context_unittest.cc', |
| 369 'host/client_connection_unittest.cc', | 371 'host/client_connection_unittest.cc', |
| 370 'host/differ_unittest.cc', | 372 'host/differ_unittest.cc', |
| 371 'host/differ_block_unittest.cc', | 373 'host/differ_block_unittest.cc', |
| 372 'host/heartbeat_sender_unittest.cc', | 374 'host/heartbeat_sender_unittest.cc', |
| 373 'host/host_key_pair_unittest.cc', | 375 'host/host_key_pair_unittest.cc', |
| 374 'host/json_host_config_unittest.cc', | 376 'host/json_host_config_unittest.cc', |
| 375 'host/mock_objects.h', | 377 'host/mock_objects.h', |
| 376 'host/session_manager_unittest.cc', | 378 'host/session_manager_unittest.cc', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 407 ], # end of 'conditions' | 409 ], # end of 'conditions' |
| 408 }, # end of target 'chromoting_unittests' | 410 }, # end of target 'chromoting_unittests' |
| 409 ], # end of targets | 411 ], # end of targets |
| 410 } | 412 } |
| 411 | 413 |
| 412 # Local Variables: | 414 # Local Variables: |
| 413 # tab-width:2 | 415 # tab-width:2 |
| 414 # indent-tabs-mode:nil | 416 # indent-tabs-mode:nil |
| 415 # End: | 417 # End: |
| 416 # vim: set expandtab tabstop=2 shiftwidth=2: | 418 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |