no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / xul / moz.build
bloba60ee29a8792a67310a1568f864a8bcd8fcdd333
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", "XUL")
10 if CONFIG["ENABLE_TESTS"]:
11     MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
12     MOCHITEST_CHROME_MANIFESTS += ["test/chrome.toml"]
13     BROWSER_CHROME_MANIFESTS += ["test/browser.toml"]
15 EXPORTS += [
16     "nsIScrollbarMediator.h",
17     "nsXULPopupManager.h",
18     "nsXULTooltipListener.h",
21 UNIFIED_SOURCES += [
22     "MiddleCroppingLabelFrame.cpp",
23     "nsMenuPopupFrame.cpp",
24     "nsRepeatService.cpp",
25     "nsScrollbarButtonFrame.cpp",
26     "nsScrollbarFrame.cpp",
27     "nsSliderFrame.cpp",
28     "nsSplitterFrame.cpp",
29     "nsXULPopupManager.cpp",
30     "nsXULTooltipListener.cpp",
31     "SimpleXULLeafFrame.cpp",
34 DIRS += ["tree"]
36 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
37     CFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
38     CXXFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
40 include("/ipc/chromium/chromium-config.mozbuild")
42 FINAL_LIBRARY = "xul"
43 LOCAL_INCLUDES += [
44     "../base",
45     "../generic",
46     "../painting",
47     "../style",
48     "/dom/base",
49     "/dom/xul",