Bug 1508381 - remove now-unnecessary TASKCLUSTER_* variables r=tomprince
[gecko.git] / config / stl-headers.mozbuild
bloba9635cdf5f50dff268bb568023e35a20cb0aa128
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 # This list contains the of STL headers that have been reviewed for exception
8 # safety and approved. See
10 #   https://bugzilla.mozilla.org/show_bug.cgi?id=551254
12 # At build time, each header listed here is converted into a "wrapper
13 # header" that is installed into dist/stl_includes.
15 # If you would like to request a new STL header <foo> be added, please
16 # file a Core:XPCOM bug with a title like "STL: Review exception
17 # safety of <foo> for gcc and MSVC".
18 stl_headers = [
19     'new',
21     # FIXME: these headers haven't been reviewed yet, but we use them
22     # unsafely in Gecko, so we might as well prevent them from
23     # throwing exceptions
24     'algorithm',
25     'atomic',
26     'cassert',
27     'climits',
28     'cmath',
29     'cstdarg',
30     'cstdio',
31     'cstdlib',
32     'cstring',
33     'cwchar',
34     'deque',
35     'functional',
36     'ios',
37     'iosfwd',
38     'iostream',
39     'istream',
40     'iterator',
41     'limits',
42     'list',
43     'map',
44     'memory',
45     'ostream',
46     'regex',
47     'set',
48     'stack',
49     'string',
50     'thread',
51     'tuple',
52     'type_traits',
53     'unordered_map',
54     'unordered_set',
55     'utility',
56     'vector',
57     'xutility',