aboutsummaryrefslogtreecommitdiff
path: root/mojo/public/tools/bindings/chromium_bindings_configuration.gni
blob: ca36723fb0ca17960c5a90869ec21f0b30ef051c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

_typemap_imports = [
  "//ash/public/interfaces/typemaps.gni",
  "//cc/ipc/typemaps.gni",
  "//chrome/browser/media/router/mojo/typemaps.gni",
  "//chrome/common/extensions/typemaps.gni",
  "//chrome/common/importer/typemaps.gni",
  "//chrome/typemaps.gni",
  "//components/arc/common/typemaps.gni",
  "//components/metrics/public/cpp/typemaps.gni",
  "//components/typemaps.gni",
  "//content/common/bluetooth/typemaps.gni",
  "//content/common/indexed_db/typemaps.gni",
  "//content/common/presentation/typemaps.gni",
  "//content/common/typemaps.gni",
  "//content/public/common/typemaps.gni",
  "//device/bluetooth/public/interfaces/typemaps.gni",
  "//device/gamepad/public/interfaces/typemaps.gni",
  "//device/generic_sensor/public/interfaces/typemaps.gni",
  "//device/usb/public/interfaces/typemaps.gni",
  "//extensions/common/typemaps.gni",
  "//gpu/ipc/common/typemaps.gni",
  "//media/capture/mojo/typemaps.gni",
  "//media/mojo/interfaces/typemaps.gni",
  "//mojo/common/typemaps.gni",
  "//mojo/public/cpp/bindings/tests/chromium_typemaps.gni",
  "//net/interfaces/typemaps.gni",
  "//services/preferences/public/cpp/typemaps.gni",
  "//services/resource_coordinator/public/cpp/typemaps.gni",
  "//services/service_manager/public/cpp/typemaps.gni",
  "//services/ui/gpu/interfaces/typemaps.gni",
  "//services/ui/public/interfaces/cursor/typemaps.gni",
  "//services/ui/public/interfaces/ime/typemaps.gni",
  "//services/video_capture/public/interfaces/typemaps.gni",
  "//skia/public/interfaces/typemaps.gni",
  "//third_party/WebKit/public/public_typemaps.gni",
  "//ui/base/mojo/typemaps.gni",
  "//ui/display/mojo/typemaps.gni",
  "//ui/events/devices/mojo/typemaps.gni",
  "//ui/events/mojo/typemaps.gni",
  "//ui/gfx/typemaps.gni",
  "//ui/latency/mojo/typemaps.gni",
  "//ui/message_center/mojo/typemaps.gni",
  "//url/mojo/typemaps.gni",
]

_typemap_imports_mac = [ "//content/common/typemaps_mac.gni" ]

_typemaps = []
foreach(typemap_import, _typemap_imports) {
  # Avoid reassignment error by assigning to empty scope first.
  _imported = {
  }
  _imported = read_file(typemap_import, "scope")
  _typemaps += _imported.typemaps
}

typemaps = []
foreach(typemap, _typemaps) {
  typemaps += [ {
        filename = typemap
        config = read_file(typemap, "scope")
      } ]
}

_typemaps_mac = []
foreach(typemap_import, _typemap_imports_mac) {
  _imported = {
  }
  _imported = read_file(typemap_import, "scope")
  _typemaps_mac += _imported.typemaps
}

typemaps_mac = []
foreach(typemap, _typemaps_mac) {
  typemaps_mac += [ {
        filename = typemap
        config = read_file(typemap, "scope")
      } ]
}