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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 'type': '<(library)', | 138 'type': '<(library)', |
139 'dependencies': [ | 139 'dependencies': [ |
140 'chromoting_base', | 140 'chromoting_base', |
141 'chromoting_jingle_glue', | 141 'chromoting_jingle_glue', |
142 ], | 142 ], |
143 'sources': [ | 143 'sources': [ |
144 'host/capturer.cc', | 144 'host/capturer.cc', |
145 'host/capturer.h', | 145 'host/capturer.h', |
146 'host/chromoting_host.cc', | 146 'host/chromoting_host.cc', |
147 'host/chromoting_host.h', | 147 'host/chromoting_host.h', |
| 148 'host/chromoting_host_context.cc', |
| 149 'host/chromoting_hsot_context.h', |
148 'host/client_connection.cc', | 150 'host/client_connection.cc', |
149 'host/client_connection.h', | 151 'host/client_connection.h', |
150 'host/differ.h', | 152 'host/differ.h', |
151 'host/differ.cc', | 153 'host/differ.cc', |
152 'host/differ_block.h', | 154 'host/differ_block.h', |
153 'host/differ_block.cc', | 155 'host/differ_block.cc', |
154 'host/encoder.h', | 156 'host/encoder.h', |
155 'host/encoder_verbatim.cc', | 157 'host/encoder_verbatim.cc', |
156 'host/encoder_verbatim.h', | 158 'host/encoder_verbatim.h', |
157 # TODO(hclam): Enable VP8 in the build. | 159 # TODO(hclam): Enable VP8 in the build. |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 'include_dirs': [ | 318 'include_dirs': [ |
317 '../testing/gmock/include', | 319 '../testing/gmock/include', |
318 ], | 320 ], |
319 'sources': [ | 321 'sources': [ |
320 'host/client_connection_unittest.cc', | 322 'host/client_connection_unittest.cc', |
321 'base/mock_objects.h', | 323 'base/mock_objects.h', |
322 'base/multiple_array_input_stream_unittest.cc', | 324 'base/multiple_array_input_stream_unittest.cc', |
323 'base/protocol_decoder_unittest.cc', | 325 'base/protocol_decoder_unittest.cc', |
324 'client/mock_objects.h', | 326 'client/mock_objects.h', |
325 'client/decoder_verbatim_unittest.cc', | 327 'client/decoder_verbatim_unittest.cc', |
| 328 'host/chromoting_host_context_unittest.cc', |
326 'host/differ_unittest.cc', | 329 'host/differ_unittest.cc', |
327 'host/differ_block_unittest.cc', | 330 'host/differ_block_unittest.cc', |
328 'host/json_host_config_unittest.cc', | 331 'host/json_host_config_unittest.cc', |
329 'host/mock_objects.h', | 332 'host/mock_objects.h', |
330 'host/session_manager_unittest.cc', | 333 'host/session_manager_unittest.cc', |
331 # TODO(hclam): Enable VP8 in the build. | 334 # TODO(hclam): Enable VP8 in the build. |
332 #'host/encoder_vp8_unittest.cc', | 335 #'host/encoder_vp8_unittest.cc', |
333 'jingle_glue/jingle_thread_unittest.cc', | 336 'jingle_glue/jingle_thread_unittest.cc', |
334 'jingle_glue/jingle_channel_unittest.cc', | 337 'jingle_glue/jingle_channel_unittest.cc', |
335 'jingle_glue/iq_request_unittest.cc', | 338 'jingle_glue/iq_request_unittest.cc', |
(...skipping 26 matching lines...) Expand all Loading... |
362 ], # end of 'conditions' | 365 ], # end of 'conditions' |
363 }, # end of target 'chromoting_unittests' | 366 }, # end of target 'chromoting_unittests' |
364 ], # end of targets | 367 ], # end of targets |
365 } | 368 } |
366 | 369 |
367 # Local Variables: | 370 # Local Variables: |
368 # tab-width:2 | 371 # tab-width:2 |
369 # indent-tabs-mode:nil | 372 # indent-tabs-mode:nil |
370 # End: | 373 # End: |
371 # vim: set expandtab tabstop=2 shiftwidth=2: | 374 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |