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 }, |
| 23 { |
| 24 'target_name': 'device_sensors_mojo_bindings_for_blink', |
| 25 'type': 'static_library', |
| 26 'sources': [ '<@(mojom_files)' ], |
| 27 'variables': { |
| 28 'for_blink': 'true', |
| 29 }, |
| 30 'includes': [ |
| 31 '../../mojo/mojom_bindings_generator.gypi', |
| 32 ], |
| 33 }, |
| 34 ], |
| 35 } |
OLD | NEW |