| 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 '../third_party/libxml/libxml.gyp:libxml', |
| 19 'power_state_control_proto', | 19 'power_state_control_proto', |
| 20 'power_supply_properties_proto', | 20 'power_supply_properties_proto', |
| 21 'video_activity_update_proto', |
| 21 ], | 22 ], |
| 22 'defines': [ | 23 'defines': [ |
| 23 'CHROMEOS_IMPLEMENTATION', | 24 'CHROMEOS_IMPLEMENTATION', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| 26 'chromeos_export.h', | 27 'chromeos_export.h', |
| 27 'chromeos_switches.cc', | 28 'chromeos_switches.cc', |
| 28 'chromeos_switches.h', | 29 'chromeos_switches.h', |
| 29 'cryptohome/async_method_caller.cc', | 30 'cryptohome/async_method_caller.cc', |
| 30 'cryptohome/async_method_caller.h', | 31 'cryptohome/async_method_caller.h', |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 'type': 'static_library', | 288 'type': 'static_library', |
| 288 'sources': [ | 289 'sources': [ |
| 289 '../third_party/cros_system_api/dbus/power_supply_properties.proto', | 290 '../third_party/cros_system_api/dbus/power_supply_properties.proto', |
| 290 ], | 291 ], |
| 291 'variables': { | 292 'variables': { |
| 292 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 293 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
| 293 'proto_out_dir': 'chromeos/dbus', | 294 'proto_out_dir': 'chromeos/dbus', |
| 294 }, | 295 }, |
| 295 'includes': ['../build/protoc.gypi'], | 296 'includes': ['../build/protoc.gypi'], |
| 296 }, | 297 }, |
| 298 { |
| 299 # Protobuf compiler / generator for the VideoActivityUpdate protocol |
| 300 # buffer. |
| 301 'target_name': 'video_activity_update_proto', |
| 302 'type': 'static_library', |
| 303 'sources': [ |
| 304 '../third_party/cros_system_api/dbus/video_activity_update.proto', |
| 305 ], |
| 306 'variables': { |
| 307 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
| 308 'proto_out_dir': 'chromeos/dbus', |
| 309 }, |
| 310 'includes': ['../build/protoc.gypi'], |
| 311 }, |
| 297 ], | 312 ], |
| 298 } | 313 } |
| OLD | NEW |