| 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", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 | 24 |
| 25 typemaps = [] | 25 typemaps = [] |
| 26 foreach(typemap, _typemaps) { | 26 foreach(typemap, _typemaps) { |
| 27 typemaps += [ { | 27 typemaps += [ { |
| 28 filename = typemap | 28 filename = typemap |
| 29 config = read_file(typemap, "scope") | 29 config = read_file(typemap, "scope") |
| 30 } ] | 30 } ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 blacklist = [ | 33 blacklist = [] |
| 34 # TODO(sammc): Remove the following once |for_blink| bindings support WTF | |
| 35 # maps with enum keys. See https://crbug.com/583738. | |
| 36 "//mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", | |
| 37 ] | |
| OLD | NEW |