Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: chromeos/chromeos.gyp

Issue 200643005: Read and expose accelerometer values from cros-ec-accel trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix alphabetization. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/accelerometer/accelerometer_reader.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_tools.gypi' 10 'chromeos_tools.gypi'
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'chromeos', 14 'target_name': 'chromeos',
15 'type': '<(component)', 15 'type': '<(component)',
16 'dependencies': [ 16 'dependencies': [
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 '../base/base.gyp:base_prefs', 18 '../base/base.gyp:base_prefs',
19 '../components/components.gyp:onc_component', 19 '../components/components.gyp:onc_component',
20 '../crypto/crypto.gyp:crypto', 20 '../crypto/crypto.gyp:crypto',
21 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 21 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
22 '../build/linux/system.gyp:dbus', 22 '../build/linux/system.gyp:dbus',
23 '../build/linux/system.gyp:ssl', 23 '../build/linux/system.gyp:ssl',
24 '../dbus/dbus.gyp:dbus', 24 '../dbus/dbus.gyp:dbus',
25 '../net/net.gyp:net', 25 '../net/net.gyp:net',
26 '../third_party/icu/icu.gyp:icui18n', 26 '../third_party/icu/icu.gyp:icui18n',
27 '../third_party/libxml/libxml.gyp:libxml', 27 '../third_party/libxml/libxml.gyp:libxml',
28 '../ui/gfx/gfx.gyp:gfx_geometry',
28 '../url/url.gyp:url_lib', 29 '../url/url.gyp:url_lib',
29 'cryptohome_proto', 30 'cryptohome_proto',
30 'ime/input_method.gyp:gencode', 31 'ime/input_method.gyp:gencode',
31 'power_manager_proto', 32 'power_manager_proto',
32 ], 33 ],
33 'defines': [ 34 'defines': [
34 'CHROMEOS_IMPLEMENTATION', 35 'CHROMEOS_IMPLEMENTATION',
35 ], 36 ],
36 'sources': [ 37 'sources': [
37 'app_mode/kiosk_oem_manifest_parser.cc', 38 'app_mode/kiosk_oem_manifest_parser.cc',
38 'app_mode/kiosk_oem_manifest_parser.h', 39 'app_mode/kiosk_oem_manifest_parser.h',
39 'audio/audio_device.cc', 40 'audio/audio_device.cc',
40 'audio/audio_device.h', 41 'audio/audio_device.h',
41 'audio/audio_devices_pref_handler.h', 42 'audio/audio_devices_pref_handler.h',
42 'audio/audio_pref_observer.h', 43 'audio/audio_pref_observer.h',
43 'audio/cras_audio_handler.cc', 44 'audio/cras_audio_handler.cc',
44 'audio/cras_audio_handler.h', 45 'audio/cras_audio_handler.h',
45 'audio/audio_devices_pref_handler_stub.cc', 46 'audio/audio_devices_pref_handler_stub.cc',
46 'audio/audio_devices_pref_handler_stub.h', 47 'audio/audio_devices_pref_handler_stub.h',
47 'audio/chromeos_sounds.h', 48 'audio/chromeos_sounds.h',
49 'accelerometer/accelerometer_reader.cc',
Daniel Erat 2014/04/02 20:44:24 still needs to move up a bit more, i think :-)
flackr 2014/04/02 20:47:13 Oops, I think I'm going bug-eyed. Thanks!
50 'accelerometer/accelerometer_reader.h',
48 'attestation/attestation_constants.cc', 51 'attestation/attestation_constants.cc',
49 'attestation/attestation_constants.h', 52 'attestation/attestation_constants.h',
50 'attestation/attestation_flow.cc', 53 'attestation/attestation_flow.cc',
51 'attestation/attestation_flow.h', 54 'attestation/attestation_flow.h',
52 'cert_loader.cc', 55 'cert_loader.cc',
53 'cert_loader.h', 56 'cert_loader.h',
54 'chromeos_constants.cc', 57 'chromeos_constants.cc',
55 'chromeos_constants.h', 58 'chromeos_constants.h',
56 'chromeos_export.h', 59 'chromeos_export.h',
57 'chromeos_paths.cc', 60 'chromeos_paths.cc',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 ], 578 ],
576 'variables': { 579 'variables': {
577 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 580 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
578 'proto_out_dir': 'chromeos/cryptohome', 581 'proto_out_dir': 'chromeos/cryptohome',
579 }, 582 },
580 'includes': ['../build/protoc.gypi'], 583 'includes': ['../build/protoc.gypi'],
581 }, 584 },
582 585
583 ], 586 ],
584 } 587 }
OLDNEW
« no previous file with comments | « chromeos/accelerometer/accelerometer_reader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698