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

Side by Side Diff: ui/accelerometer/ui_accelerometer.gyp

Issue 500613003: Use standardized and extendable accelerometer update type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge and remove unused Vector3dF reference. Created 6 years, 3 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # GN version: //ui/events/ipc 11 # GN version: //ui/accelerometer
12 'target_name': 'events_ipc', 12 'target_name': 'ui_accelerometer',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '<(DEPTH)/base/base.gyp:base', 15 '../gfx/gfx.gyp:gfx_geometry',
16 '<(DEPTH)/ipc/ipc.gyp:ipc',
17 ], 16 ],
18 'defines': [ 17 'defines': [
19 'EVENTS_IMPLEMENTATION', 18 'UI_ACCELEROMETER_IMPLEMENTATION',
19 ],
20 'sources' : [
21 'accelerometer_types.cc',
22 'accelerometer_types.h',
23 'ui_accelerometer_export.h',
20 ], 24 ],
21 'include_dirs': [ 25 'include_dirs': [
22 '../..', 26 '../..',
23 ], 27 ],
24 'sources': [
25 'latency_info_param_traits.cc',
26 'latency_info_param_traits.h',
27 ],
28 }, 28 },
29 ], 29 ],
30 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698