diff options
Diffstat (limited to 'dom/offline/moz.build')
-rw-r--r-- | dom/offline/moz.build | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/dom/offline/moz.build b/dom/offline/moz.build index b35f27bc9e..6a4bac1197 100644 --- a/dom/offline/moz.build +++ b/dom/offline/moz.build @@ -3,10 +3,15 @@ # 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 += ['nsDOMOfflineResourceList.h'] +EXPORTS += [ + 'nsDOMOfflineResourceList.h', +] +UNIFIED_SOURCES += [ + 'nsDOMOfflineResourceList.cpp', +] -SOURCES += ['nsDOMOfflineResourceList.cpp'] - -LOCAL_INCLUDES += ['/dom/base'] +LOCAL_INCLUDES += [ + '/dom/base', +] FINAL_LIBRARY = 'xul' |