| 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 'power_state_control_proto', | 18 'power_state_control_proto', |
| 19 'power_supply_properties_proto', | 19 'power_supply_properties_proto', |
| 20 ], | 20 ], |
| 21 'defines': [ |
| 22 'CHROMEOS_IMPLEMENTATION', |
| 23 ], |
| 21 'sources': [ | 24 'sources': [ |
| 22 'chromeos_export.h', | 25 'chromeos_export.h', |
| 23 'chromeos_switches.cc', | 26 'chromeos_switches.cc', |
| 24 'chromeos_switches.h', | 27 'chromeos_switches.h', |
| 25 'dbus/blocking_method_caller.cc', | 28 'dbus/blocking_method_caller.cc', |
| 26 'dbus/blocking_method_caller.h', | 29 'dbus/blocking_method_caller.h', |
| 27 'dbus/bluetooth_adapter_client.cc', | 30 'dbus/bluetooth_adapter_client.cc', |
| 28 'dbus/bluetooth_adapter_client.h', | 31 'dbus/bluetooth_adapter_client.h', |
| 29 'dbus/bluetooth_agent_service_provider.cc', | 32 'dbus/bluetooth_agent_service_provider.cc', |
| 30 'dbus/bluetooth_agent_service_provider.h', | 33 'dbus/bluetooth_agent_service_provider.h', |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 '../third_party/cros_system_api/dbus/power_supply_properties.proto', | 212 '../third_party/cros_system_api/dbus/power_supply_properties.proto', |
| 210 ], | 213 ], |
| 211 'variables': { | 214 'variables': { |
| 212 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 215 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
| 213 'proto_out_dir': 'chromeos/dbus', | 216 'proto_out_dir': 'chromeos/dbus', |
| 214 }, | 217 }, |
| 215 'includes': ['../build/protoc.gypi'], | 218 'includes': ['../build/protoc.gypi'], |
| 216 }, | 219 }, |
| 217 ], | 220 ], |
| 218 } | 221 } |
| OLD | NEW |