OLD | NEW |
---|---|
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 variant = "blink" | 5 variant = "blink" |
6 | 6 |
7 for_blink = true | 7 for_blink = true |
8 | 8 |
9 _typemap_imports = [ | 9 _typemap_imports = [ |
10 "//mojo/public/cpp/bindings/tests/blink_typemaps.gni", | 10 "//mojo/public/cpp/bindings/tests/blink_typemaps.gni", |
11 "//third_party/WebKit/Source/platform/mojo/blink_typemaps.gni", | 11 "//third_party/WebKit/Source/platform/mojo/blink_typemaps.gni", |
12 ] | 12 ] |
13 _typemaps = [] | 13 _typemaps = [] |
14 | 14 |
15 foreach(typemap_import, _typemap_imports) { | 15 foreach(typemap_import, _typemap_imports) { |
16 _imported = read_file(typemap_import, "scope") | 16 _imported = read_file(typemap_import, "scope") |
17 _typemaps += _imported.typemaps | 17 _typemaps += _imported.typemaps |
18 } | 18 } |
19 | 19 |
20 typemaps = [] | 20 typemaps = [] |
21 foreach(typemap, _typemaps) { | 21 foreach(typemap, _typemaps) { |
22 typemaps += [ read_file(typemap, "scope") ] | 22 typemaps += [ read_file(typemap, "scope") ] |
23 } | 23 } |
24 | 24 |
25 blacklist = [ | 25 blacklist = [] |
Ken Rockot(use gerrit already)
2016/06/03 23:14:23
Woohoo!
| |
26 # TODO(sammc): Remove the following once |for_blink| bindings support WTF | |
27 # maps. See https://crbug.com/583738. | |
28 "//components/mus/public/interfaces/clipboard.mojom", | |
29 "//components/mus/public/interfaces/window_manager.mojom", | |
30 "//components/mus/public/interfaces/window_tree.mojom", | |
31 "//extensions/common/api/mime_handler.mojom", | |
32 "//mojo/public/interfaces/bindings/tests/struct_with_traits.mojom", | |
33 "//mojo/public/interfaces/bindings/tests/test_structs.mojom", | |
34 "//mojo/public/interfaces/bindings/tests/test_unions.mojom", | |
35 "//mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", | |
36 "//services/catalog/public/interfaces/catalog.mojom", | |
37 "//services/shell/public/interfaces/capabilities.mojom", | |
38 ] | |
OLD | NEW |