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

Side by Side Diff: device/usb/usb.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/usb/public/interfaces/BUILD.gn ('k') | device/vibration/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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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/chooser_service.mojom', 9 'public/interfaces/chooser_service.mojom',
10 'public/interfaces/device.mojom', 10 'public/interfaces/device.mojom',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 }] 131 }]
132 ] 132 ]
133 }, 133 },
134 { 134 {
135 'target_name': 'device_usb_mojo_bindings', 135 'target_name': 'device_usb_mojo_bindings',
136 'type': 'static_library', 136 'type': 'static_library',
137 'sources': [ '<@(mojom_files)' ], 137 'sources': [ '<@(mojom_files)' ],
138 'includes': [ 138 'includes': [
139 '../../mojo/mojom_bindings_generator.gypi', 139 '../../mojo/mojom_bindings_generator.gypi',
140 ], 140 ],
141 'variables': {
142 'use_new_wrapper_types': 'false',
143 },
141 }, 144 },
142 { 145 {
143 'target_name': 'device_usb_mojo_bindings_for_blink', 146 'target_name': 'device_usb_mojo_bindings_for_blink',
144 'type': 'static_library', 147 'type': 'static_library',
145 'sources': [ '<@(mojom_files)' ], 148 'sources': [ '<@(mojom_files)' ],
146 'variables': { 149 'variables': {
147 'for_blink': 'true', 150 'for_blink': 'true',
151 'use_new_wrapper_types': 'false',
148 }, 152 },
149 'includes': [ 153 'includes': [
150 '../../mojo/mojom_bindings_generator.gypi', 154 '../../mojo/mojom_bindings_generator.gypi',
151 ], 155 ],
152 }, 156 },
153 { 157 {
154 'target_name': 'device_usb_mocks', 158 'target_name': 'device_usb_mocks',
155 'type': 'static_library', 159 'type': 'static_library',
156 'include_dirs': [ 160 'include_dirs': [
157 '../..', 161 '../..',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'type': 'none', 209 'type': 'none',
206 'variables': { 210 'variables': {
207 'source_file': 'usb_descriptors.h', 211 'source_file': 'usb_descriptors.h',
208 }, 212 },
209 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 213 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
210 }, 214 },
211 ], 215 ],
212 }], 216 }],
213 ], 217 ],
214 } 218 }
OLDNEW
« no previous file with comments | « device/usb/public/interfaces/BUILD.gn ('k') | device/vibration/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698