OLD | NEW |
| (Empty) |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 'mojom_files': [ | |
9 'public/interfaces/light.mojom', | |
10 'public/interfaces/motion.mojom', | |
11 'public/interfaces/orientation.mojom', | |
12 ], | |
13 }, | |
14 'targets': [ | |
15 { | |
16 'target_name': 'device_sensors_mojo_bindings', | |
17 'type': 'static_library', | |
18 'sources': [ '<@(mojom_files)' ], | |
19 'includes': [ | |
20 '../../mojo/mojom_bindings_generator.gypi', | |
21 ], | |
22 'variables': { | |
23 'use_new_wrapper_types': 'false', | |
24 }, | |
25 }, | |
26 { | |
27 'target_name': 'device_sensors_mojo_bindings_for_blink', | |
28 'type': 'static_library', | |
29 'sources': [ '<@(mojom_files)' ], | |
30 'variables': { | |
31 'for_blink': 'true', | |
32 'use_new_wrapper_types': 'false', | |
33 }, | |
34 'includes': [ | |
35 '../../mojo/mojom_bindings_generator.gypi', | |
36 ], | |
37 }, | |
38 ], | |
39 } | |
OLD | NEW |