diff options
Diffstat (limited to 'gfx/angle/targets/compression_utils_portable/moz.build')
-rw-r--r-- | gfx/angle/targets/compression_utils_portable/moz.build | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/gfx/angle/targets/compression_utils_portable/moz.build b/gfx/angle/targets/compression_utils_portable/moz.build new file mode 100644 index 0000000000..99697f6cc4 --- /dev/null +++ b/gfx/angle/targets/compression_utils_portable/moz.build @@ -0,0 +1,174 @@ +# Generated by update-angle.py + +include("../../moz.build.common") + +# DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +DEFINES["CR_CLANG_REVISION"] = '"llvmorg-13-init-9302-g897d7bce-1"' +DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "0" +# DEFINES["NDEBUG"] = True +DEFINES["NOMINMAX"] = True +# DEFINES["NTDDI_VERSION"] = "NTDDI_WIN10_VB" +# DEFINES["NVALGRIND"] = True +# DEFINES["PSAPI_VERSION"] = "2" +DEFINES["UNICODE"] = True +# DEFINES["USE_AURA"] = "1" +# DEFINES["WIN32"] = True +# DEFINES["WIN32_LEAN_AND_MEAN"] = True +# DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +DEFINES["WINVER"] = "0x0A00" +DEFINES["_ATL_NO_OPENGL"] = True +DEFINES["_CRT_RAND_S"] = True +DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +DEFINES["_HAS_EXCEPTIONS"] = "0" +# DEFINES["_HAS_NODISCARD"] = True +DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +DEFINES["_SECURE_ATL"] = True +DEFINES["_UNICODE"] = True +# DEFINES["_WIN32_WINNT"] = "0x0A00" +# DEFINES["_WINDOWS"] = True +# DEFINES["__STD_C"] = True + +LOCAL_INCLUDES += [ + "../../checkout/", + "../../checkout/out/gen/", + "../../checkout/third_party/zlib/", +] + +# CXXFLAGS += [ +# "-add-plugin", +# "-D__DATE__=", +# "-D__TIME__=", +# "-D__TIMESTAMP__=", +# "-fcolor-diagnostics", +# "-fcomplete-member-pointers", +# "-fcrash-diagnostics-dir=../tools/clang/crashreports", +# "-fdebug-compilation-dir", +# "-fmerge-all-constants", +# "-fmsc-version=1916", +# "-fno-delete-null-pointer-checks", +# "-fno-ident", +# "-ftrivial-auto-var-init=pattern", +# "-gcodeview-ghash", +# "-instcombine-lower-dbg-declare=0", +# "-m64", +# "-mllvm", +# "-msse3", +# "-no-canonical-prefixes", +# "-plugin-arg-find-bad-constructs", +# "-Wextra-semi", +# "-Wheader-hygiene", +# "-Wimplicit-fallthrough", +# "-Wmax-tokens", +# "-Wno-builtin-assume-aligned-alignment", +# "-Wno-builtin-macro-redefined", +# "-Wno-c++11-narrowing", +# "-Wno-deprecated-copy", +# "-Wno-final-dtor-non-final-class", +# "-Wno-ignored-pragma-optimize", +# "-Wno-implicit-int-float-conversion", +# "-Wno-missing-field-initializers", +# "-Wno-non-c-typedef-for-linkage", +# "-Wno-nonportable-include-path", +# "-Wno-psabi", +# "-Wno-trigraphs", +# "-Wno-undefined-var-template", +# "-Wno-unneeded-internal-declaration", +# "-Wno-unused-parameter", +# "-Wstring-conversion", +# "-Wtautological-overlap-compare", +# "-Wthread-safety", +# "-Wunreachable-code", +# "-Xclang", +# ".", +# "/bigobj", +# "/Brepro", +# "/D__WRL_ENABLE_FUNCTION_STATICS__", +# "/FS", +# "/GR-", +# "/guard:cf,nochecks", +# "/Gw", +# "/Gy", +# "/MT", +# "/O1", +# "/Ob2", +# "/Oi", +# "/Oy-", +# "/TP", +# "/utf-8", +# "/W4", +# "/wd4091", +# "/wd4100", +# "/wd4121", +# "/wd4127", +# "/wd4200", +# "/wd4201", +# "/wd4204", +# "/wd4221", +# "/wd4244", +# "/wd4245", +# "/wd4251", +# "/wd4267", +# "/wd4275", +# "/wd4305", +# "/wd4312", +# "/wd4324", +# "/wd4351", +# "/wd4355", +# "/wd4389", +# "/wd4456", +# "/wd4457", +# "/wd4458", +# "/wd4459", +# "/wd4503", +# "/wd4505", +# "/wd4510", +# "/wd4512", +# "/wd4577", +# "/wd4589", +# "/wd4610", +# "/wd4611", +# "/wd4661", +# "/wd4701", +# "/wd4702", +# "/wd4703", +# "/wd4706", +# "/wd4715", +# "/wd4838", +# "/wd4995", +# "/wd4996", +# "/WX", +# "/Z7", +# "/Zc:inline", +# "/Zc:sizedDealloc-", +# "/Zc:twoPhase", +# "checked-ptr-as-trivial-member", +# "find-bad-constructs", +# ] + +SOURCES += [ + "../../checkout/third_party/zlib/google/compression_utils_portable.cc", +] + +USE_LIBS += [ + "zlib", +] + +# LDFLAGS += [ +# "--color-diagnostics", +# "/call-graph-profile-sort:no", +# "/CETCOMPAT", +# "/DEBUG:GHASH", +# "/FIXED:NO", +# "/INCREMENTAL:NO", +# "/lldignoreenv", +# "/OPT:ICF", +# "/OPT:NOLLDTAILMERGE", +# "/OPT:REF", +# "/pdbaltpath:%_PDB%", +# "/PDBSourcePath:C:/dev/angle/out", +# "/PROFILE", +# "/TIMESTAMP:1619931600", +# "/WX", +# ] + +Library("compression_utils_portable") |