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

Side by Side Diff: device/sensors/sensors.gyp

Issue 2156303003: Mojo C++ bindings: make the generator use STL/WTF string/vector/map by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into 72_switch_default Created 4 years, 5 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
« no previous file with comments | « device/sensors/public/interfaces/BUILD.gn ('k') | device/serial/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 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 'mojom_files': [ 8 'mojom_files': [
9 'public/interfaces/light.mojom', 9 'public/interfaces/light.mojom',
10 'public/interfaces/motion.mojom', 10 'public/interfaces/motion.mojom',
11 'public/interfaces/orientation.mojom', 11 'public/interfaces/orientation.mojom',
12 ], 12 ],
13 }, 13 },
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'device_sensors_mojo_bindings', 16 'target_name': 'device_sensors_mojo_bindings',
17 'type': 'static_library', 17 'type': 'static_library',
18 'sources': [ '<@(mojom_files)' ], 18 'sources': [ '<@(mojom_files)' ],
19 'includes': [ 19 'includes': [
20 '../../mojo/mojom_bindings_generator.gypi', 20 '../../mojo/mojom_bindings_generator.gypi',
21 ], 21 ],
22 'variables': {
23 'use_new_wrapper_types': 'false',
24 },
22 }, 25 },
23 { 26 {
24 'target_name': 'device_sensors_mojo_bindings_for_blink', 27 'target_name': 'device_sensors_mojo_bindings_for_blink',
25 'type': 'static_library', 28 'type': 'static_library',
26 'sources': [ '<@(mojom_files)' ], 29 'sources': [ '<@(mojom_files)' ],
27 'variables': { 30 'variables': {
28 'for_blink': 'true', 31 'for_blink': 'true',
32 'use_new_wrapper_types': 'false',
29 }, 33 },
30 'includes': [ 34 'includes': [
31 '../../mojo/mojom_bindings_generator.gypi', 35 '../../mojo/mojom_bindings_generator.gypi',
32 ], 36 ],
33 }, 37 },
34 ], 38 ],
35 } 39 }
OLDNEW
« no previous file with comments | « device/sensors/public/interfaces/BUILD.gn ('k') | device/serial/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698