Bug 1728955: part 5) Add missing `// static` comment to `nsClipboard::CreateNativeDat...
[gecko.git] / toolkit / content / buildconfig.html
blob7974776c6c64a84a18a099b4902b54b87be7be9b
1 <!DOCTYPE html>
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 #filter substitution
7 #include @TOPOBJDIR@/source-repo.h
8 <html>
9 <head>
10 <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src chrome:; object-src 'none'" />
11 <meta charset="UTF-8">
12 <meta name="viewport" content="width=device-width; user-scalable=false;">
13 <title>Build Configuration</title>
14 <link rel="stylesheet" href="chrome://global/skin/in-content/info-pages.css" type="text/css">
15 <link rel="stylesheet" href="chrome://global/content/buildconfig.css" type="text/css">
16 </head>
17 <body>
18 <div class="container">
19 <h1>Build Configuration</h1>
20 <p>Please be aware that this page doesn't reflect all the options used to build Firefox.</p>
21 #ifdef MOZ_SOURCE_URL
22 <h2>Source</h2>
23 <p>Built from <a href="@MOZ_SOURCE_URL@">@MOZ_SOURCE_URL@</a></p>
24 #endif
25 <h2>Build platform</h2>
26 <table class="build-platform-table">
27 <tbody>
28 <tr>
29 <th>target</th>
30 </tr>
31 <tr>
32 <td>@target@</td>
33 </tr>
34 </tbody>
35 </table>
36 #if defined(CC) && defined(CXX) && defined(RUSTC)
37 <h2>Build tools</h2>
38 <table>
39 <tbody>
40 <tr>
41 <th>Compiler</th>
42 <th>Version</th>
43 <th>Compiler flags</th>
44 </tr>
45 <tr>
46 <td>@CC@</td>
47 <td>@CC_VERSION@</td>
48 <td>@CFLAGS@</td>
49 </tr>
50 <tr>
51 <td>@CXX@</td>
52 <td>@CC_VERSION@</td>
53 <td>@CXXFLAGS@</td>
54 </tr>
55 <tr>
56 <td>@RUSTC@</td>
57 <td>@RUSTC_VERSION@</td>
58 <td>@RUSTFLAGS@</td>
59 </tr>
60 </tbody>
61 </table>
62 #endif
63 <h2>Configure options</h2>
64 <p>@MOZ_CONFIGURE_OPTIONS@</p>
65 #ifdef ANDROID
66 <h2>Package name</h2>
67 <p>@ANDROID_PACKAGE_NAME@</p>
68 #endif
69 </div>
70 </body>
71 </html>