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 variant = "wtf" | |
6 | |
7 for_blink = true | |
8 | |
9 _typemaps = [ | |
yzshen1
2016/04/05 17:36:14
I thought previously you said users didn't have to
Sam McNally
2016/04/06 07:02:53
Typemaps don't have to be added to this file expli
yzshen1
2016/04/06 16:00:47
Yeah, scanning using py script seems sad.
By "the
Sam McNally
2016/04/07 00:19:43
I've extracted the typemap list into imported gni
| |
10 "//mojo/public/cpp/bindings/tests/test_native_types_blink.typemap", | |
11 "//mojo/public/cpp/bindings/tests/rect_blink.typemap", | |
12 ] | |
13 | |
14 typemaps = [] | |
15 foreach(typemap, _typemaps) { | |
16 typemaps += [ read_file(typemap, "scope") ] | |
17 } | |
18 | |
19 blacklist = [ | |
20 # TODO(sammc): Remove the following once |for_blink| bindings support WTF | |
21 # maps. See https://crbug.com/583738. | |
22 "//components/mus/public/interfaces/window_manager.mojom", | |
23 "//components/mus/public/interfaces/window_tree.mojom", | |
24 "//extensions/common/api/mime_handler.mojom", | |
25 "//mojo/public/interfaces/bindings/tests/test_structs.mojom", | |
26 "//mojo/public/interfaces/bindings/tests/test_unions.mojom", | |
27 "//mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", | |
28 "//mojo/services/catalog/public/interfaces/catalog.mojom", | |
29 "//mojo/shell/public/interfaces/capabilities.mojom", | |
30 ] | |
OLD | NEW |