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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 'dbus/speech_synthesizer_client.cc', | 111 'dbus/speech_synthesizer_client.cc', |
112 'dbus/speech_synthesizer_client.h', | 112 'dbus/speech_synthesizer_client.h', |
113 'dbus/sms_client.cc', | 113 'dbus/sms_client.cc', |
114 'dbus/sms_client.h', | 114 'dbus/sms_client.h', |
115 'dbus/update_engine_client.cc', | 115 'dbus/update_engine_client.cc', |
116 'dbus/update_engine_client.h', | 116 'dbus/update_engine_client.h', |
117 'disks/disk_mount_manager.cc', | 117 'disks/disk_mount_manager.cc', |
118 'disks/disk_mount_manager.h', | 118 'disks/disk_mount_manager.h', |
119 'display/output_configurator.cc', | 119 'display/output_configurator.cc', |
120 'display/output_configurator.h', | 120 'display/output_configurator.h', |
| 121 'network/device_state.h', |
| 122 'network/device_state.cc', |
| 123 'network/managed_state.h', |
| 124 'network/managed_state.cc', |
121 'network/network_sms_handler.cc', | 125 'network/network_sms_handler.cc', |
122 'network/network_sms_handler.h', | 126 'network/network_sms_handler.h', |
| 127 'network/network_state.cc', |
| 128 'network/network_state.h', |
| 129 'network/network_state_handler.cc', |
| 130 'network/network_state_handler.h', |
| 131 'network/network_state_handler_impl.cc', |
| 132 'network/network_state_handler_impl.h', |
| 133 'network/network_state_handler_observer.cc', |
| 134 'network/network_state_handler_observer.h', |
| 135 'network/shill_service_observer.cc', |
| 136 'network/shill_service_observer.h', |
123 'power/power_state_override.cc', | 137 'power/power_state_override.cc', |
124 'power/power_state_override.h', | 138 'power/power_state_override.h', |
125 ], | 139 ], |
126 'link_settings': { | 140 'link_settings': { |
127 'libraries': [ | 141 'libraries': [ |
128 '-lXext', | 142 '-lXext', |
129 '-lXrandr', | 143 '-lXrandr', |
130 ], | 144 ], |
131 }, | 145 }, |
132 }, | 146 }, |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 'dbus/ibus/ibus_engine_factory_service_unittest.cc', | 269 'dbus/ibus/ibus_engine_factory_service_unittest.cc', |
256 'dbus/ibus/ibus_engine_service_unittest.cc', | 270 'dbus/ibus/ibus_engine_service_unittest.cc', |
257 'dbus/ibus/ibus_input_context_client_unittest.cc', | 271 'dbus/ibus/ibus_input_context_client_unittest.cc', |
258 'dbus/ibus/ibus_lookup_table_unittest.cc', | 272 'dbus/ibus/ibus_lookup_table_unittest.cc', |
259 'dbus/ibus/ibus_object_unittest.cc', | 273 'dbus/ibus/ibus_object_unittest.cc', |
260 'dbus/ibus/ibus_property_unittest.cc', | 274 'dbus/ibus/ibus_property_unittest.cc', |
261 'dbus/ibus/ibus_text_unittest.cc', | 275 'dbus/ibus/ibus_text_unittest.cc', |
262 'dbus/introspectable_client_unittest.cc', | 276 'dbus/introspectable_client_unittest.cc', |
263 'dbus/modem_messaging_client_unittest.cc', | 277 'dbus/modem_messaging_client_unittest.cc', |
264 'network/network_sms_handler_unittest.cc', | 278 'network/network_sms_handler_unittest.cc', |
| 279 'network/network_state_handler_unittest.cc', |
265 'power/power_state_override_unittest.cc', | 280 'power/power_state_override_unittest.cc', |
266 ], | 281 ], |
267 'include_dirs': [ | 282 'include_dirs': [ |
268 '..', | 283 '..', |
269 ], | 284 ], |
270 'conditions': [ | 285 'conditions': [ |
271 [ 'linux_use_tcmalloc==1', { | 286 [ 'linux_use_tcmalloc==1', { |
272 'dependencies': [ | 287 'dependencies': [ |
273 '../base/allocator/allocator.gyp:allocator', | 288 '../base/allocator/allocator.gyp:allocator', |
274 ], | 289 ], |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 '../third_party/cros_system_api/dbus/video_activity_update.proto', | 328 '../third_party/cros_system_api/dbus/video_activity_update.proto', |
314 ], | 329 ], |
315 'variables': { | 330 'variables': { |
316 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 331 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
317 'proto_out_dir': 'chromeos/dbus', | 332 'proto_out_dir': 'chromeos/dbus', |
318 }, | 333 }, |
319 'includes': ['../build/protoc.gypi'], | 334 'includes': ['../build/protoc.gypi'], |
320 }, | 335 }, |
321 ], | 336 ], |
322 } | 337 } |
OLD | NEW |