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

Side by Side Diff: mojo/public/tools/bindings/blink_bindings_configuration.gni

Issue 2353003004: Move ViewHostMsg_CreateWindow to mojom (Closed)
Patch Set: . Created 4 years, 3 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
OLDNEW
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 "//third_party/WebKit/public/blink_typemaps.gni", 12 "//third_party/WebKit/public/blink_typemaps.gni",
13 "//third_party/WebKit/public/public_typemaps.gni",
13 ] 14 ]
14 _typemaps = [] 15 _typemaps = []
15 16
16 foreach(typemap_import, _typemap_imports) { 17 foreach(typemap_import, _typemap_imports) {
17 # Avoid reassignment error by assigning to empty scope first. 18 # Avoid reassignment error by assigning to empty scope first.
18 _imported = { 19 _imported = {
19 } 20 }
20 _imported = read_file(typemap_import, "scope") 21 _imported = read_file(typemap_import, "scope")
21 _typemaps += _imported.typemaps 22 _typemaps += _imported.typemaps
22 } 23 }
23 24
24 typemaps = [] 25 typemaps = []
25 foreach(typemap, _typemaps) { 26 foreach(typemap, _typemaps) {
26 typemaps += [ read_file(typemap, "scope") ] 27 typemaps += [ read_file(typemap, "scope") ]
27 } 28 }
28 29
29 blacklist = [ 30 blacklist = [
30 # TODO(sammc): Remove the following once |for_blink| bindings support WTF 31 # TODO(sammc): Remove the following once |for_blink| bindings support WTF
31 # maps with enum keys. See https://crbug.com/583738. 32 # maps with enum keys. See https://crbug.com/583738.
32 "//mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", 33 "//mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom",
33 ] 34 ]
OLDNEW
« no previous file with comments | « content/test/test_web_contents.cc ('k') | mojo/public/tools/bindings/chromium_bindings_configuration.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698