| 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'dbus/power_supply_status.cc', | 104 'dbus/power_supply_status.cc', |
| 105 'dbus/power_supply_status.h', | 105 'dbus/power_supply_status.h', |
| 106 'dbus/session_manager_client.cc', | 106 'dbus/session_manager_client.cc', |
| 107 'dbus/session_manager_client.h', | 107 'dbus/session_manager_client.h', |
| 108 'dbus/speech_synthesizer_client.cc', | 108 'dbus/speech_synthesizer_client.cc', |
| 109 'dbus/speech_synthesizer_client.h', | 109 'dbus/speech_synthesizer_client.h', |
| 110 'dbus/sms_client.cc', | 110 'dbus/sms_client.cc', |
| 111 'dbus/sms_client.h', | 111 'dbus/sms_client.h', |
| 112 'dbus/update_engine_client.cc', | 112 'dbus/update_engine_client.cc', |
| 113 'dbus/update_engine_client.h', | 113 'dbus/update_engine_client.h', |
| 114 'disks/disk_mount_manager.cc', |
| 115 'disks/disk_mount_manager.h', |
| 114 'display/output_configurator.cc', | 116 'display/output_configurator.cc', |
| 115 'display/output_configurator.h', | 117 'display/output_configurator.h', |
| 116 'network/network_sms_handler.cc', | 118 'network/network_sms_handler.cc', |
| 117 'network/network_sms_handler.h', | 119 'network/network_sms_handler.h', |
| 118 ], | 120 ], |
| 119 'link_settings': { | 121 'link_settings': { |
| 120 'libraries': [ | 122 'libraries': [ |
| 121 '-lXext', | 123 '-lXext', |
| 122 ], | 124 ], |
| 123 }, | 125 }, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'dbus/mock_power_manager_client.cc', | 181 'dbus/mock_power_manager_client.cc', |
| 180 'dbus/mock_power_manager_client.h', | 182 'dbus/mock_power_manager_client.h', |
| 181 'dbus/mock_session_manager_client.cc', | 183 'dbus/mock_session_manager_client.cc', |
| 182 'dbus/mock_session_manager_client.h', | 184 'dbus/mock_session_manager_client.h', |
| 183 'dbus/mock_sms_client.cc', | 185 'dbus/mock_sms_client.cc', |
| 184 'dbus/mock_sms_client.h', | 186 'dbus/mock_sms_client.h', |
| 185 'dbus/mock_speech_synthesizer_client.cc', | 187 'dbus/mock_speech_synthesizer_client.cc', |
| 186 'dbus/mock_speech_synthesizer_client.h', | 188 'dbus/mock_speech_synthesizer_client.h', |
| 187 'dbus/mock_update_engine_client.cc', | 189 'dbus/mock_update_engine_client.cc', |
| 188 'dbus/mock_update_engine_client.h', | 190 'dbus/mock_update_engine_client.h', |
| 191 'disks/mock_disk_mount_manager.cc', |
| 192 'disks/mock_disk_mount_manager.h', |
| 189 ], | 193 ], |
| 190 'include_dirs': [ | 194 'include_dirs': [ |
| 191 '..', | 195 '..', |
| 192 ], | 196 ], |
| 193 }, | 197 }, |
| 194 { | 198 { |
| 195 'target_name': 'chromeos_test_support_without_gmock', | 199 'target_name': 'chromeos_test_support_without_gmock', |
| 196 'type': 'static_library', | 200 'type': 'static_library', |
| 197 'dependencies': [ | 201 'dependencies': [ |
| 198 '../build/linux/system.gyp:dbus', | 202 '../build/linux/system.gyp:dbus', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 '../third_party/cros_system_api/dbus/power_supply_properties.proto', | 281 '../third_party/cros_system_api/dbus/power_supply_properties.proto', |
| 278 ], | 282 ], |
| 279 'variables': { | 283 'variables': { |
| 280 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 284 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
| 281 'proto_out_dir': 'chromeos/dbus', | 285 'proto_out_dir': 'chromeos/dbus', |
| 282 }, | 286 }, |
| 283 'includes': ['../build/protoc.gypi'], | 287 'includes': ['../build/protoc.gypi'], |
| 284 }, | 288 }, |
| 285 ], | 289 ], |
| 286 } | 290 } |
| OLD | NEW |