diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 03:00:14 -0400 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-24 10:30:52 +0200 |
commit | c5d9e1f973f107d83977908f40cc06abe9acebfa (patch) | |
tree | 63a4a969ac01c7c149b8470d0aa5c519b133ed8c | |
parent | 2e12bda342c99addf3e8bdb09bed0aacc5609b23 (diff) | |
download | UXP-c5d9e1f973f107d83977908f40cc06abe9acebfa.tar UXP-c5d9e1f973f107d83977908f40cc06abe9acebfa.tar.gz UXP-c5d9e1f973f107d83977908f40cc06abe9acebfa.tar.lz UXP-c5d9e1f973f107d83977908f40cc06abe9acebfa.tar.xz UXP-c5d9e1f973f107d83977908f40cc06abe9acebfa.zip |
Issue #80 - De-unify dom/json
-rw-r--r-- | dom/json/moz.build | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/dom/json/moz.build b/dom/json/moz.build index 635dca255..28711b19a 100644 --- a/dom/json/moz.build +++ b/dom/json/moz.build @@ -4,17 +4,11 @@ # 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 += [ - 'nsJSON.h', -] +EXPORTS += ['nsJSON.h'] -UNIFIED_SOURCES += [ - 'nsJSON.cpp', -] +SOURCES += ['nsJSON.cpp'] -LOCAL_INCLUDES += [ - '/dom/base', -] +LOCAL_INCLUDES += ['/dom/base'] FINAL_LIBRARY = 'xul' |