diff options
author | trav90 <travawine@palemoon.org> | 2018-10-06 17:29:50 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-10-06 17:29:50 -0500 |
commit | c2fa384d666aea1b119736f33116ac09e870fda0 (patch) | |
tree | 643a1009d32e68df792526c79db4a4921a7b02ec /mfbt/tests/gtest/moz.build | |
parent | 323cb98de19b6f63b52d3fde5d7144712384c058 (diff) | |
download | UXP-c2fa384d666aea1b119736f33116ac09e870fda0.tar UXP-c2fa384d666aea1b119736f33116ac09e870fda0.tar.gz UXP-c2fa384d666aea1b119736f33116ac09e870fda0.tar.lz UXP-c2fa384d666aea1b119736f33116ac09e870fda0.tar.xz UXP-c2fa384d666aea1b119736f33116ac09e870fda0.zip |
Add mozilla::Span
Diffstat (limited to 'mfbt/tests/gtest/moz.build')
-rw-r--r-- | mfbt/tests/gtest/moz.build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mfbt/tests/gtest/moz.build b/mfbt/tests/gtest/moz.build new file mode 100644 index 000000000..bd559d60b --- /dev/null +++ b/mfbt/tests/gtest/moz.build @@ -0,0 +1,15 @@ +# -*- 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/. + +UNIFIED_SOURCES += [ + 'TestSpan.cpp', +] + +#LOCAL_INCLUDES += [ +# '../../base', +#] + +FINAL_LIBRARY = 'xul-gtest' |