| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |