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