Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(539)

Side by Side Diff: chromeos/chromeos.gyp

Issue 14392007: dbus: Use stubs for some clients and utils for MockDBusThreadManagerWithoutGMock (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: diff from 14508007 Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 ], 309 ],
310 'sources': [ 310 'sources': [
311 'attestation/mock_attestation_flow.cc', 311 'attestation/mock_attestation_flow.cc',
312 'attestation/mock_attestation_flow.h', 312 'attestation/mock_attestation_flow.h',
313 'chromeos_test_utils.cc', 313 'chromeos_test_utils.cc',
314 'chromeos_test_utils.h', 314 'chromeos_test_utils.h',
315 'cryptohome/mock_async_method_caller.cc', 315 'cryptohome/mock_async_method_caller.cc',
316 'cryptohome/mock_async_method_caller.h', 316 'cryptohome/mock_async_method_caller.h',
317 'cryptohome/mock_cryptohome_library.cc', 317 'cryptohome/mock_cryptohome_library.cc',
318 'cryptohome/mock_cryptohome_library.h', 318 'cryptohome/mock_cryptohome_library.h',
319 'dbus/fake_session_manager_client.cc',
320 'dbus/fake_session_manager_client.h',
321 'dbus/fake_update_engine_client.cc',
322 'dbus/fake_update_engine_client.h',
323 'dbus/mock_bluetooth_adapter_client.cc', 319 'dbus/mock_bluetooth_adapter_client.cc',
324 'dbus/mock_bluetooth_adapter_client.h', 320 'dbus/mock_bluetooth_adapter_client.h',
325 'dbus/mock_bluetooth_device_client.cc', 321 'dbus/mock_bluetooth_device_client.cc',
326 'dbus/mock_bluetooth_device_client.h', 322 'dbus/mock_bluetooth_device_client.h',
327 'dbus/mock_bluetooth_input_client.cc', 323 'dbus/mock_bluetooth_input_client.cc',
328 'dbus/mock_bluetooth_input_client.h', 324 'dbus/mock_bluetooth_input_client.h',
329 'dbus/mock_bluetooth_manager_client.cc', 325 'dbus/mock_bluetooth_manager_client.cc',
330 'dbus/mock_bluetooth_manager_client.h', 326 'dbus/mock_bluetooth_manager_client.h',
331 'dbus/mock_bluetooth_node_client.cc', 327 'dbus/mock_bluetooth_node_client.cc',
332 'dbus/mock_bluetooth_node_client.h', 328 'dbus/mock_bluetooth_node_client.h',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 'dbus/fake_old_bluetooth_adapter_client.cc', 385 'dbus/fake_old_bluetooth_adapter_client.cc',
390 'dbus/fake_old_bluetooth_adapter_client.h', 386 'dbus/fake_old_bluetooth_adapter_client.h',
391 'dbus/fake_old_bluetooth_device_client.cc', 387 'dbus/fake_old_bluetooth_device_client.cc',
392 'dbus/fake_old_bluetooth_device_client.h', 388 'dbus/fake_old_bluetooth_device_client.h',
393 'dbus/fake_old_bluetooth_manager_client.cc', 389 'dbus/fake_old_bluetooth_manager_client.cc',
394 'dbus/fake_old_bluetooth_manager_client.h', 390 'dbus/fake_old_bluetooth_manager_client.h',
395 'dbus/fake_power_manager_client.cc', 391 'dbus/fake_power_manager_client.cc',
396 'dbus/fake_power_manager_client.h', 392 'dbus/fake_power_manager_client.h',
397 'dbus/fake_shill_manager_client.cc', 393 'dbus/fake_shill_manager_client.cc',
398 'dbus/fake_shill_manager_client.h', 394 'dbus/fake_shill_manager_client.h',
395 'dbus/fake_session_manager_client.cc',
396 'dbus/fake_session_manager_client.h',
397 'dbus/fake_update_engine_client.cc',
398 'dbus/fake_update_engine_client.h',
399 'dbus/mock_dbus_thread_manager_without_gmock.cc', 399 'dbus/mock_dbus_thread_manager_without_gmock.cc',
400 'dbus/mock_dbus_thread_manager_without_gmock.h', 400 'dbus/mock_dbus_thread_manager_without_gmock.h',
401 'dbus/ibus/mock_ibus_client.cc', 401 'dbus/ibus/mock_ibus_client.cc',
402 'dbus/ibus/mock_ibus_client.h', 402 'dbus/ibus/mock_ibus_client.h',
403 'dbus/ibus/mock_ibus_config_client.cc', 403 'dbus/ibus/mock_ibus_config_client.cc',
404 'dbus/ibus/mock_ibus_config_client.h', 404 'dbus/ibus/mock_ibus_config_client.h',
405 'dbus/ibus/mock_ibus_input_context_client.cc', 405 'dbus/ibus/mock_ibus_input_context_client.cc',
406 'dbus/ibus/mock_ibus_input_context_client.h', 406 'dbus/ibus/mock_ibus_input_context_client.h',
407 'dbus/ibus/mock_ibus_engine_factory_service.cc', 407 'dbus/ibus/mock_ibus_engine_factory_service.cc',
408 'dbus/ibus/mock_ibus_engine_factory_service.h', 408 'dbus/ibus/mock_ibus_engine_factory_service.h',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 '../third_party/cros_system_api/dbus/video_activity_update.proto', 531 '../third_party/cros_system_api/dbus/video_activity_update.proto',
532 ], 532 ],
533 'variables': { 533 'variables': {
534 'proto_in_dir': '../third_party/cros_system_api/dbus/', 534 'proto_in_dir': '../third_party/cros_system_api/dbus/',
535 'proto_out_dir': 'chromeos/dbus', 535 'proto_out_dir': 'chromeos/dbus',
536 }, 536 },
537 'includes': ['../build/protoc.gypi'], 537 'includes': ['../build/protoc.gypi'],
538 }, 538 },
539 ], 539 ],
540 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698