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 'includes': [ | 9 'includes': [ |
10 'chromeos_memory.gypi', | 10 'chromeos_memory.gypi', |
11 'chromeos_tools.gypi', | 11 'chromeos_tools.gypi', |
12 ], | 12 ], |
13 'targets': [ | 13 'targets': [ |
14 { | 14 { |
15 'target_name': 'chromeos', | 15 'target_name': 'chromeos', |
16 'type': '<(component)', | 16 'type': '<(component)', |
17 'dependencies': [ | 17 'dependencies': [ |
18 '../base/base.gyp:base', | 18 '../base/base.gyp:base', |
19 '../base/base.gyp:base_prefs', | 19 '../base/base.gyp:base_prefs', |
20 '../components/components.gyp:onc_component', | 20 '../components/components.gyp:onc_component', |
21 '../crypto/crypto.gyp:crypto', | 21 '../crypto/crypto.gyp:crypto', |
22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
23 '../build/linux/system.gyp:dbus', | 23 '../build/linux/system.gyp:dbus', |
24 '../build/linux/system.gyp:ssl', | 24 '../build/linux/system.gyp:ssl', |
25 '../dbus/dbus.gyp:dbus', | 25 '../dbus/dbus.gyp:dbus', |
26 '../net/net.gyp:net', | 26 '../net/net.gyp:net', |
27 '../third_party/icu/icu.gyp:icui18n', | 27 '../third_party/icu/icu.gyp:icui18n', |
28 '../third_party/libxml/libxml.gyp:libxml', | 28 '../third_party/libxml/libxml.gyp:libxml', |
| 29 '../ui/gfx/gfx.gyp:gfx_geometry', |
29 '../url/url.gyp:url_lib', | 30 '../url/url.gyp:url_lib', |
30 'cryptohome_proto', | 31 'cryptohome_proto', |
31 'ime/input_method.gyp:gencode', | 32 'ime/input_method.gyp:gencode', |
32 'power_manager_proto', | 33 'power_manager_proto', |
33 ], | 34 ], |
34 'defines': [ | 35 'defines': [ |
35 'CHROMEOS_IMPLEMENTATION', | 36 'CHROMEOS_IMPLEMENTATION', |
36 ], | 37 ], |
37 'sources': [ | 38 'sources': [ |
| 39 'accelerometer/accelerometer_reader.cc', |
| 40 'accelerometer/accelerometer_reader.h', |
38 'app_mode/kiosk_oem_manifest_parser.cc', | 41 'app_mode/kiosk_oem_manifest_parser.cc', |
39 'app_mode/kiosk_oem_manifest_parser.h', | 42 'app_mode/kiosk_oem_manifest_parser.h', |
40 'audio/audio_device.cc', | 43 'audio/audio_device.cc', |
41 'audio/audio_device.h', | 44 'audio/audio_device.h', |
42 'audio/audio_devices_pref_handler.h', | 45 'audio/audio_devices_pref_handler.h', |
43 'audio/audio_pref_observer.h', | 46 'audio/audio_pref_observer.h', |
44 'audio/cras_audio_handler.cc', | 47 'audio/cras_audio_handler.cc', |
45 'audio/cras_audio_handler.h', | 48 'audio/cras_audio_handler.h', |
46 'audio/audio_devices_pref_handler_stub.cc', | 49 'audio/audio_devices_pref_handler_stub.cc', |
47 'audio/audio_devices_pref_handler_stub.h', | 50 'audio/audio_devices_pref_handler_stub.h', |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 ], | 571 ], |
569 'variables': { | 572 'variables': { |
570 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', | 573 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', |
571 'proto_out_dir': 'chromeos/cryptohome', | 574 'proto_out_dir': 'chromeos/cryptohome', |
572 }, | 575 }, |
573 'includes': ['../build/protoc.gypi'], | 576 'includes': ['../build/protoc.gypi'], |
574 }, | 577 }, |
575 | 578 |
576 ], | 579 ], |
577 } | 580 } |
OLD | NEW |