Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  gen_moz_build.py

  Sprache: Python
 

#!/usr/bin/env python3
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import json


def gen_includes(export_prefix, path_prefix):
    result = ""

    exports = []
    for f in os.listdir(path_prefix):
        # Explicitly ignore the "{gtest,gmock}/internal/custom" paths, as we
        # replace files in them for custom configurations.
        if f == "custom":
            continue

        path = os.path.join(path_prefix, f)
        if os.path.isfile(path):
            if os.path.splitext(f)[1] != ".h":
                continue
            exports.append(path)
        else:
            result += gen_includes(export_prefix + "." + f, path)

    if exports:
        result += "%s += [\n" % export_prefix
        for export in sorted(exports):
            result += "    %s,\n" % json.dumps(export)
        result += "]\n"

    return result


if __name__ == "__main__":
    GTEST_PATH = "googletest/include/gtest"
    GMOCK_PATH = "googlemock/include/gmock"

    exports = "\n".join(
        [
            # Normal include paths used by most code
            gen_includes("EXPORTS.gtest", GTEST_PATH),
            gen_includes("EXPORTS.gmock", GMOCK_PATH),
            # webrtc.org unit tests use this include path
            gen_includes("EXPORTS.testing.gtest.include.gtest", GTEST_PATH),
            gen_includes("EXPORTS.testing.gmock.include.gmock", GMOCK_PATH),
        ]
    )
    exports = exports.replace("\n""\n    ")

    mozbuild = f"""\
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

# !!! THIS FILE IS AUTOGENERATED USING gen_moz_build.py DO NOT EDIT !!!

with Files("**"):
    BUG_COMPONENT = ("Testing""GTest")
    SCHEDULES.exclusive = ["gtest"]

if CONFIG["ENABLE_TESTS"]:

    {exports}

    SOURCES += [
        "googlemock/src/gmock-all.cc",
        "googletest/src/gtest-all.cc",
    ]

    Library("gtest")

    LOCAL_INCLUDES += [
        "googlemock",
        "googletest",
    ]

    if CONFIG["OS_ARCH"] == "WINNT":
        DEFINES["UNICODE"] = True

    FINAL_LIBRARY = "xul-gtest"
"""

    with open("moz.build""w"as f:
        f.write(mozbuild)

Messung V0.5 in Prozent
C=96 H=97 G=96

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet am  2026-06-04) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik