summaryrefslogtreecommitdiffstats
path: root/rdf/datasource/moz.build
diff options
context:
space:
mode:
Diffstat (limited to 'rdf/datasource/moz.build')
-rw-r--r--rdf/datasource/moz.build22
1 files changed, 22 insertions, 0 deletions
diff --git a/rdf/datasource/moz.build b/rdf/datasource/moz.build
new file mode 100644
index 000000000..5341562ff
--- /dev/null
+++ b/rdf/datasource/moz.build
@@ -0,0 +1,22 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+EXPORTS += [
+ 'nsILocalStore.h',
+]
+
+UNIFIED_SOURCES += [
+ 'nsFileSystemDataSource.cpp',
+ 'nsLocalStore.cpp',
+]
+
+FINAL_LIBRARY = 'xul'
+
+# "This is a dependency on rdfutil.h: it'll go away once that becomes
+# a first-class XPCOM interface."
+LOCAL_INCLUDES += [
+ '/rdf/base',
+]