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 { |
11 'target_name': 'chromeos', | 11 'target_name': 'chromeos', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../build/linux/system.gyp:dbus', | 15 '../build/linux/system.gyp:dbus', |
16 '../dbus/dbus.gyp:dbus', | 16 '../dbus/dbus.gyp:dbus', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
| 18 '../third_party/libxml/libxml.gyp:libxml', |
18 'power_state_control_proto', | 19 'power_state_control_proto', |
19 'power_supply_properties_proto', | 20 'power_supply_properties_proto', |
20 ], | 21 ], |
21 'defines': [ | 22 'defines': [ |
22 'CHROMEOS_IMPLEMENTATION', | 23 'CHROMEOS_IMPLEMENTATION', |
23 ], | 24 ], |
24 'sources': [ | 25 'sources': [ |
25 'chromeos_export.h', | 26 'chromeos_export.h', |
26 'chromeos_switches.cc', | 27 'chromeos_switches.cc', |
27 'chromeos_switches.h', | 28 'chromeos_switches.h', |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'dbus/flimflam_manager_client_unittest.cc', | 187 'dbus/flimflam_manager_client_unittest.cc', |
187 'dbus/flimflam_network_client_unittest.cc', | 188 'dbus/flimflam_network_client_unittest.cc', |
188 'dbus/flimflam_profile_client_unittest.cc', | 189 'dbus/flimflam_profile_client_unittest.cc', |
189 'dbus/flimflam_service_client_unittest.cc', | 190 'dbus/flimflam_service_client_unittest.cc', |
190 'dbus/gsm_sms_client_unittest.cc', | 191 'dbus/gsm_sms_client_unittest.cc', |
191 'dbus/ibus/ibus_client_unittest.cc', | 192 'dbus/ibus/ibus_client_unittest.cc', |
192 'dbus/ibus/ibus_lookup_table_unittest.cc', | 193 'dbus/ibus/ibus_lookup_table_unittest.cc', |
193 'dbus/ibus/ibus_object_unittest.cc', | 194 'dbus/ibus/ibus_object_unittest.cc', |
194 'dbus/ibus/ibus_text_unittest.cc', | 195 'dbus/ibus/ibus_text_unittest.cc', |
195 'dbus/ibus/ibus_input_context_client_unittest.cc', | 196 'dbus/ibus/ibus_input_context_client_unittest.cc', |
| 197 'dbus/introspectable_client_unittest.cc', |
196 'network/network_sms_handler_unittest.cc', | 198 'network/network_sms_handler_unittest.cc', |
197 ], | 199 ], |
198 'include_dirs': [ | 200 'include_dirs': [ |
199 '..', | 201 '..', |
200 ], | 202 ], |
201 }, | 203 }, |
202 { | 204 { |
203 # Protobuf compiler / generator for the PowerSupplyProperties protocol | 205 # Protobuf compiler / generator for the PowerSupplyProperties protocol |
204 # buffer. | 206 # buffer. |
205 'target_name': 'power_state_control_proto', | 207 'target_name': 'power_state_control_proto', |
(...skipping 16 matching lines...) Expand all Loading... |
222 '../third_party/cros_system_api/dbus/power_supply_properties.proto', | 224 '../third_party/cros_system_api/dbus/power_supply_properties.proto', |
223 ], | 225 ], |
224 'variables': { | 226 'variables': { |
225 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 227 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
226 'proto_out_dir': 'chromeos/dbus', | 228 'proto_out_dir': 'chromeos/dbus', |
227 }, | 229 }, |
228 'includes': ['../build/protoc.gypi'], | 230 'includes': ['../build/protoc.gypi'], |
229 }, | 231 }, |
230 ], | 232 ], |
231 } | 233 } |
OLD | NEW |