| OLD | NEW |
| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'dbus/image_burner_client.cc', | 102 'dbus/image_burner_client.cc', |
| 103 'dbus/image_burner_client.h', | 103 'dbus/image_burner_client.h', |
| 104 'dbus/introspectable_client.cc', | 104 'dbus/introspectable_client.cc', |
| 105 'dbus/introspectable_client.h', | 105 'dbus/introspectable_client.h', |
| 106 'dbus/modem_messaging_client.cc', | 106 'dbus/modem_messaging_client.cc', |
| 107 'dbus/modem_messaging_client.h', | 107 'dbus/modem_messaging_client.h', |
| 108 'dbus/permission_broker_client.cc', | 108 'dbus/permission_broker_client.cc', |
| 109 'dbus/permission_broker_client.h', | 109 'dbus/permission_broker_client.h', |
| 110 'dbus/power_manager_client.cc', | 110 'dbus/power_manager_client.cc', |
| 111 'dbus/power_manager_client.h', | 111 'dbus/power_manager_client.h', |
| 112 'dbus/power_policy_controller.cc', |
| 113 'dbus/power_policy_controller.h', |
| 112 'dbus/power_supply_status.cc', | 114 'dbus/power_supply_status.cc', |
| 113 'dbus/power_supply_status.h', | 115 'dbus/power_supply_status.h', |
| 114 'dbus/session_manager_client.cc', | 116 'dbus/session_manager_client.cc', |
| 115 'dbus/session_manager_client.h', | 117 'dbus/session_manager_client.h', |
| 116 'dbus/speech_synthesizer_client.cc', | 118 'dbus/speech_synthesizer_client.cc', |
| 117 'dbus/speech_synthesizer_client.h', | 119 'dbus/speech_synthesizer_client.h', |
| 118 'dbus/sms_client.cc', | 120 'dbus/sms_client.cc', |
| 119 'dbus/sms_client.h', | 121 'dbus/sms_client.h', |
| 120 'dbus/update_engine_client.cc', | 122 'dbus/update_engine_client.cc', |
| 121 'dbus/update_engine_client.h', | 123 'dbus/update_engine_client.h', |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 ], | 366 ], |
| 365 ], | 367 ], |
| 366 }, | 368 }, |
| 367 { | 369 { |
| 368 # Protobuf compiler/generator for power-manager related protocol buffers. | 370 # Protobuf compiler/generator for power-manager related protocol buffers. |
| 369 # TODO(derat): Remove other protocol buffers in favor of these. | 371 # TODO(derat): Remove other protocol buffers in favor of these. |
| 370 'target_name': 'power_manager_proto', | 372 'target_name': 'power_manager_proto', |
| 371 'type': 'static_library', | 373 'type': 'static_library', |
| 372 'sources': [ | 374 'sources': [ |
| 373 '../third_party/cros_system_api/dbus/power_manager/input_event.proto', | 375 '../third_party/cros_system_api/dbus/power_manager/input_event.proto', |
| 376 '../third_party/cros_system_api/dbus/power_manager/policy.proto', |
| 374 '../third_party/cros_system_api/dbus/power_manager/suspend.proto', | 377 '../third_party/cros_system_api/dbus/power_manager/suspend.proto', |
| 375 ], | 378 ], |
| 376 'variables': { | 379 'variables': { |
| 377 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager', | 380 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager', |
| 378 'proto_out_dir': 'chromeos/dbus/power_manager', | 381 'proto_out_dir': 'chromeos/dbus/power_manager', |
| 379 }, | 382 }, |
| 380 'includes': ['../build/protoc.gypi'], | 383 'includes': ['../build/protoc.gypi'], |
| 381 }, | 384 }, |
| 382 { | 385 { |
| 383 # Protobuf compiler / generator for the PowerSupplyProperties protocol | 386 # Protobuf compiler / generator for the PowerSupplyProperties protocol |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 '../third_party/cros_system_api/dbus/video_activity_update.proto', | 419 '../third_party/cros_system_api/dbus/video_activity_update.proto', |
| 417 ], | 420 ], |
| 418 'variables': { | 421 'variables': { |
| 419 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 422 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
| 420 'proto_out_dir': 'chromeos/dbus', | 423 'proto_out_dir': 'chromeos/dbus', |
| 421 }, | 424 }, |
| 422 'includes': ['../build/protoc.gypi'], | 425 'includes': ['../build/protoc.gypi'], |
| 423 }, | 426 }, |
| 424 ], | 427 ], |
| 425 } | 428 } |
| OLD | NEW |