moz.build (944B)
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/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "DOM: Navigation") 9 10 EXPORTS.mozilla.dom += [ 11 "Navigation.h", 12 "NavigationActivation.h", 13 "NavigationDestination.h", 14 "NavigationHistoryEntry.h", 15 "NavigationPrecommitController.h", 16 "NavigationTransition.h", 17 "NavigationUtils.h", 18 "UserNavigationInvolvement.h", 19 ] 20 21 UNIFIED_SOURCES += [ 22 "Navigation.cpp", 23 "NavigationActivation.cpp", 24 "NavigationDestination.cpp", 25 "NavigationHistoryEntry.cpp", 26 "NavigationPrecommitController.cpp", 27 "NavigationTransition.cpp", 28 "NavigationUtils.cpp", 29 ] 30 31 include("/ipc/chromium/chromium-config.mozbuild") 32 33 FINAL_LIBRARY = "xul"