Merge mozilla-central to autoland. CLOSED TREE
[gecko.git] / toolkit / xre / glxtest / moz.build
blobbc7365582b8cd7ce3aa4c7ccd6eabb546b50ebc8
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 with Files("**"):
8     BUG_COMPONENT = ("Core", "Widget: Gtk")
10 Program("glxtest")
11 SOURCES += [
12     "glxtest.cpp",
15 if CONFIG["MOZ_ASAN"]:
16     SOURCES += [
17         "../../../mozglue/build/AsanOptions.cpp",
18     ]
20 CXXFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
21 CXXFLAGS += CONFIG["MOZ_PANGO_CFLAGS"]
22 OS_LIBS += CONFIG["MOZ_X11_LIBS"]
23 OS_LIBS += CONFIG["MOZ_GTK3_LIBS"]
25 NO_PGO = True
26 DisableStlWrapping()