michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIDataStoreService.idl', michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'dom_datastore' michael@0: michael@0: EXPORTS.mozilla.dom += [ michael@0: 'DataStore.h', michael@0: 'DataStoreCursor.h', michael@0: ] michael@0: michael@0: SOURCES += [ michael@0: 'DataStore.cpp', michael@0: 'DataStoreCursor.cpp', michael@0: ] michael@0: michael@0: LOCAL_INCLUDES += [ michael@0: '/js/xpconnect/wrappers', michael@0: ] michael@0: michael@0: EXTRA_COMPONENTS += [ michael@0: 'DataStore.manifest', michael@0: 'DataStoreService.js', michael@0: ] michael@0: michael@0: EXTRA_JS_MODULES += [ michael@0: 'DataStoreChangeNotifier.jsm', michael@0: 'DataStoreCursorImpl.jsm', michael@0: 'DataStoreDB.jsm', michael@0: 'DataStoreImpl.jsm', michael@0: 'DataStoreServiceInternal.jsm', michael@0: ] michael@0: michael@0: MOCHITEST_MANIFESTS += ['tests/mochitest.ini'] michael@0: michael@0: FINAL_LIBRARY = 'xul'