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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 'dependencies': [ | 299 'dependencies': [ |
300 'chromoting_base', | 300 'chromoting_base', |
301 'chromoting_client', | 301 'chromoting_client', |
302 'chromoting_host', | 302 'chromoting_host', |
303 'chromoting_jingle_glue', | 303 'chromoting_jingle_glue', |
304 '../base/base.gyp:base', | 304 '../base/base.gyp:base', |
305 '../base/base.gyp:base_i18n', | 305 '../base/base.gyp:base_i18n', |
306 '../gfx/gfx.gyp:*', | 306 '../gfx/gfx.gyp:*', |
307 '../testing/gmock.gyp:gmock', | 307 '../testing/gmock.gyp:gmock', |
308 '../testing/gtest.gyp:gtest', | 308 '../testing/gtest.gyp:gtest', |
| 309 # TODO(hclam): Remove all these extra dependencies notifier is moved |
| 310 # outside of chrome.gyp. |
| 311 '../chrome/chrome.gyp:browser', |
| 312 '../chrome/chrome.gyp:chrome_version_info', |
| 313 '../chrome/chrome.gyp:debugger', |
| 314 '../chrome/chrome.gyp:plugin', |
| 315 '../chrome/chrome.gyp:renderer', |
| 316 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', |
| 317 '../webkit/support/webkit_support.gyp:appcache', |
| 318 '../webkit/support/webkit_support.gyp:database', |
| 319 '../webkit/support/webkit_support.gyp:glue', |
| 320 '../webkit/support/webkit_support.gyp:webkit_support', |
309 ], | 321 ], |
310 'include_dirs': [ | 322 'include_dirs': [ |
311 '../testing/gmock/include', | 323 '../testing/gmock/include', |
312 ], | 324 ], |
313 'sources': [ | 325 'sources': [ |
314 'host/client_connection_unittest.cc', | 326 'host/client_connection_unittest.cc', |
315 'base/mock_objects.h', | 327 'base/mock_objects.h', |
316 'base/multiple_array_input_stream_unittest.cc', | 328 'base/multiple_array_input_stream_unittest.cc', |
317 'base/protocol_decoder_unittest.cc', | 329 'base/protocol_decoder_unittest.cc', |
318 'client/mock_objects.h', | 330 'client/mock_objects.h', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 ], # end of 'conditions' | 368 ], # end of 'conditions' |
357 }, # end of target 'chromoting_unittests' | 369 }, # end of target 'chromoting_unittests' |
358 ], # end of targets | 370 ], # end of targets |
359 } | 371 } |
360 | 372 |
361 # Local Variables: | 373 # Local Variables: |
362 # tab-width:2 | 374 # tab-width:2 |
363 # indent-tabs-mode:nil | 375 # indent-tabs-mode:nil |
364 # End: | 376 # End: |
365 # vim: set expandtab tabstop=2 shiftwidth=2: | 377 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |