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

Side by Side Diff: chromeos/chromeos.gyp

Issue 1575313002: Add CommandBroker::OnTransaction to handle incoming transactions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment Created 4 years, 11 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
« no previous file with comments | « chromeos/binder/test_service.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'chromeos_sources': [ 9 'chromeos_sources': [
10 'accelerometer/accelerometer_reader.cc', 10 'accelerometer/accelerometer_reader.cc',
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'chromeos_binder_sources': [ 391 'chromeos_binder_sources': [
392 'binder/buffer_reader.cc', 392 'binder/buffer_reader.cc',
393 'binder/buffer_reader.h', 393 'binder/buffer_reader.h',
394 'binder/command_broker.cc', 394 'binder/command_broker.cc',
395 'binder/command_broker.h', 395 'binder/command_broker.h',
396 'binder/command_stream.cc', 396 'binder/command_stream.cc',
397 'binder/command_stream.h', 397 'binder/command_stream.h',
398 'binder/constants.h', 398 'binder/constants.h',
399 'binder/driver.cc', 399 'binder/driver.cc',
400 'binder/driver.h', 400 'binder/driver.h',
401 'binder/ipc_thread.cc',
402 'binder/ipc_thread.h',
401 'binder/local_object.cc', 403 'binder/local_object.cc',
402 'binder/local_object.h', 404 'binder/local_object.h',
403 'binder/object.h', 405 'binder/object.h',
404 'binder/remote_object.cc', 406 'binder/remote_object.cc',
405 'binder/remote_object.h', 407 'binder/remote_object.h',
406 'binder/service_manager_proxy.cc', 408 'binder/service_manager_proxy.cc',
407 'binder/service_manager_proxy.h', 409 'binder/service_manager_proxy.h',
408 'binder/status.h', 410 'binder/status.h',
409 'binder/transaction_data.h', 411 'binder/transaction_data.h',
410 'binder/transaction_data_from_driver.cc', 412 'binder/transaction_data_from_driver.cc',
411 'binder/transaction_data_from_driver.h', 413 'binder/transaction_data_from_driver.h',
412 'binder/transaction_data_reader.cc', 414 'binder/transaction_data_reader.cc',
413 'binder/transaction_data_reader.h', 415 'binder/transaction_data_reader.h',
414 'binder/transaction_status.cc', 416 'binder/transaction_status.cc',
415 'binder/transaction_status.h', 417 'binder/transaction_status.h',
416 'binder/util.cc', 418 'binder/util.cc',
417 'binder/util.h', 419 'binder/util.h',
418 'binder/writable_transaction_data.cc', 420 'binder/writable_transaction_data.cc',
419 'binder/writable_transaction_data.h', 421 'binder/writable_transaction_data.h',
420 ], 422 ],
421 'chromeos_binder_test_sources': [ 423 'chromeos_binder_test_sources': [
422 'binder/buffer_reader_unittest.cc', 424 'binder/buffer_reader_unittest.cc',
423 'binder/command_broker_unittest.cc', 425 'binder/command_broker_unittest.cc',
424 'binder/command_stream_unittest.cc', 426 'binder/command_stream_unittest.cc',
425 'binder/driver_unittest.cc', 427 'binder/driver_unittest.cc',
428 'binder/end_to_end_unittest.cc',
426 'binder/service_manager_proxy_unittest.cc', 429 'binder/service_manager_proxy_unittest.cc',
430 'binder/test_service.cc',
431 'binder/test_service.h',
427 'binder/transaction_data_read_write_unittest.cc', 432 'binder/transaction_data_read_write_unittest.cc',
428 ], 433 ],
429 'chromeos_test_sources': [ 434 'chromeos_test_sources': [
430 'app_mode/kiosk_oem_manifest_parser_unittest.cc', 435 'app_mode/kiosk_oem_manifest_parser_unittest.cc',
431 'attestation/attestation_flow_unittest.cc', 436 'attestation/attestation_flow_unittest.cc',
432 'audio/audio_devices_pref_handler_impl_unittest.cc', 437 'audio/audio_devices_pref_handler_impl_unittest.cc',
433 'audio/cras_audio_handler_unittest.cc', 438 'audio/cras_audio_handler_unittest.cc',
434 'cert_loader_unittest.cc', 439 'cert_loader_unittest.cc',
435 'cryptohome/homedir_methods_unittest.cc', 440 'cryptohome/homedir_methods_unittest.cc',
436 'cryptohome/system_salt_getter_unittest.cc', 441 'cryptohome/system_salt_getter_unittest.cc',
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 '../build/isolate.gypi', 751 '../build/isolate.gypi',
747 ], 752 ],
748 'sources': [ 753 'sources': [
749 'chromeos_unittests.isolate', 754 'chromeos_unittests.isolate',
750 ], 755 ],
751 }, 756 },
752 ], 757 ],
753 }], 758 }],
754 ], 759 ],
755 } 760 }
OLDNEW
« no previous file with comments | « chromeos/binder/test_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698