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 'target_defaults': { | 6 'target_defaults': { |
7 'defines': [ | 7 'defines': [ |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', # Root of Chrome checkout | 10 '..', # Root of Chrome checkout |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 '../testing/gtest.gyp:gtest', | 324 '../testing/gtest.gyp:gtest', |
325 ], | 325 ], |
326 'include_dirs': [ | 326 'include_dirs': [ |
327 '../testing/gmock/include', | 327 '../testing/gmock/include', |
328 ], | 328 ], |
329 'sources': [ | 329 'sources': [ |
330 'host/client_connection_unittest.cc', | 330 'host/client_connection_unittest.cc', |
331 'base/mock_objects.h', | 331 'base/mock_objects.h', |
332 'base/multiple_array_input_stream_unittest.cc', | 332 'base/multiple_array_input_stream_unittest.cc', |
333 'base/protocol_decoder_unittest.cc', | 333 'base/protocol_decoder_unittest.cc', |
| 334 'client/mock_objects.h', |
334 'client/decoder_verbatim_unittest.cc', | 335 'client/decoder_verbatim_unittest.cc', |
335 'host/differ_unittest.cc', | 336 'host/differ_unittest.cc', |
336 'host/differ_block_unittest.cc', | 337 'host/differ_block_unittest.cc', |
337 'host/mock_objects.h', | 338 'host/mock_objects.h', |
338 'host/session_manager_unittest.cc', | 339 'host/session_manager_unittest.cc', |
339 # TODO(hclam): Enable VP8 in the build. | 340 # TODO(hclam): Enable VP8 in the build. |
340 #'host/encoder_vp8_unittest.cc', | 341 #'host/encoder_vp8_unittest.cc', |
341 'jingle_glue/jingle_thread_unittest.cc', | 342 'jingle_glue/jingle_thread_unittest.cc', |
342 'jingle_glue/jingle_channel_unittest.cc', | 343 'jingle_glue/jingle_channel_unittest.cc', |
343 'jingle_glue/iq_request_unittest.cc', | 344 'jingle_glue/iq_request_unittest.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 ], # end of 'conditions' | 382 ], # end of 'conditions' |
382 }, # end of target 'chromoting_unittests' | 383 }, # end of target 'chromoting_unittests' |
383 ], # end of targets | 384 ], # end of targets |
384 } | 385 } |
385 | 386 |
386 # Local Variables: | 387 # Local Variables: |
387 # tab-width:2 | 388 # tab-width:2 |
388 # indent-tabs-mode:nil | 389 # indent-tabs-mode:nil |
389 # End: | 390 # End: |
390 # vim: set expandtab tabstop=2 shiftwidth=2: | 391 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |