moz.build 548 B

12345678910111213141516171819202122
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. EXPORTS += [
  6. 'nsILocalStore.h',
  7. ]
  8. UNIFIED_SOURCES += [
  9. 'nsFileSystemDataSource.cpp',
  10. 'nsLocalStore.cpp',
  11. ]
  12. FINAL_LIBRARY = 'xul'
  13. # "This is a dependency on rdfutil.h: it'll go away once that becomes
  14. # a first-class XPCOM interface."
  15. LOCAL_INCLUDES += [
  16. '/rdf/base',
  17. ]