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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'dbus/speech_synthesizer_client.cc', | 115 'dbus/speech_synthesizer_client.cc', |
116 'dbus/speech_synthesizer_client.h', | 116 'dbus/speech_synthesizer_client.h', |
117 'dbus/sms_client.cc', | 117 'dbus/sms_client.cc', |
118 'dbus/sms_client.h', | 118 'dbus/sms_client.h', |
119 'dbus/update_engine_client.cc', | 119 'dbus/update_engine_client.cc', |
120 'dbus/update_engine_client.h', | 120 'dbus/update_engine_client.h', |
121 'disks/disk_mount_manager.cc', | 121 'disks/disk_mount_manager.cc', |
122 'disks/disk_mount_manager.h', | 122 'disks/disk_mount_manager.h', |
123 'display/output_configurator.cc', | 123 'display/output_configurator.cc', |
124 'display/output_configurator.h', | 124 'display/output_configurator.h', |
| 125 'network/device_state.cc', |
| 126 'network/device_state.h', |
| 127 'network/managed_state.cc', |
| 128 'network/managed_state.h', |
125 'network/network_sms_handler.cc', | 129 'network/network_sms_handler.cc', |
126 'network/network_sms_handler.h', | 130 'network/network_sms_handler.h', |
| 131 'network/network_state.cc', |
| 132 'network/network_state.h', |
| 133 'network/network_state_handler.cc', |
| 134 'network/network_state_handler.h', |
| 135 'network/network_state_handler_observer.cc', |
| 136 'network/network_state_handler_observer.h', |
| 137 'network/shill_property_handler.cc', |
| 138 'network/shill_property_handler.h', |
| 139 'network/shill_service_observer.cc', |
| 140 'network/shill_service_observer.h', |
127 'power/power_state_override.cc', | 141 'power/power_state_override.cc', |
128 'power/power_state_override.h', | 142 'power/power_state_override.h', |
129 ], | 143 ], |
130 'link_settings': { | 144 'link_settings': { |
131 'libraries': [ | 145 'libraries': [ |
132 '-lXext', | 146 '-lXext', |
133 '-lXrandr', | 147 '-lXrandr', |
134 ], | 148 ], |
135 }, | 149 }, |
136 }, | 150 }, |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 'dbus/ibus/ibus_engine_service_unittest.cc', | 279 'dbus/ibus/ibus_engine_service_unittest.cc', |
266 'dbus/ibus/ibus_input_context_client_unittest.cc', | 280 'dbus/ibus/ibus_input_context_client_unittest.cc', |
267 'dbus/ibus/ibus_lookup_table_unittest.cc', | 281 'dbus/ibus/ibus_lookup_table_unittest.cc', |
268 'dbus/ibus/ibus_object_unittest.cc', | 282 'dbus/ibus/ibus_object_unittest.cc', |
269 'dbus/ibus/ibus_panel_service_unittest.cc', | 283 'dbus/ibus/ibus_panel_service_unittest.cc', |
270 'dbus/ibus/ibus_property_unittest.cc', | 284 'dbus/ibus/ibus_property_unittest.cc', |
271 'dbus/ibus/ibus_text_unittest.cc', | 285 'dbus/ibus/ibus_text_unittest.cc', |
272 'dbus/introspectable_client_unittest.cc', | 286 'dbus/introspectable_client_unittest.cc', |
273 'dbus/modem_messaging_client_unittest.cc', | 287 'dbus/modem_messaging_client_unittest.cc', |
274 'network/network_sms_handler_unittest.cc', | 288 'network/network_sms_handler_unittest.cc', |
| 289 'network/network_state_handler_unittest.cc', |
| 290 'network/shill_property_handler_unittest.cc', |
275 'power/power_state_override_unittest.cc', | 291 'power/power_state_override_unittest.cc', |
276 ], | 292 ], |
277 'include_dirs': [ | 293 'include_dirs': [ |
278 '..', | 294 '..', |
279 ], | 295 ], |
280 'conditions': [ | 296 'conditions': [ |
281 [ 'linux_use_tcmalloc==1', { | 297 [ 'linux_use_tcmalloc==1', { |
282 'dependencies': [ | 298 'dependencies': [ |
283 '../base/allocator/allocator.gyp:allocator', | 299 '../base/allocator/allocator.gyp:allocator', |
284 ], | 300 ], |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 '../third_party/cros_system_api/dbus/video_activity_update.proto', | 339 '../third_party/cros_system_api/dbus/video_activity_update.proto', |
324 ], | 340 ], |
325 'variables': { | 341 'variables': { |
326 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 342 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
327 'proto_out_dir': 'chromeos/dbus', | 343 'proto_out_dir': 'chromeos/dbus', |
328 }, | 344 }, |
329 'includes': ['../build/protoc.gypi'], | 345 'includes': ['../build/protoc.gypi'], |
330 }, | 346 }, |
331 ], | 347 ], |
332 } | 348 } |
OLD | NEW |