You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2016/03/17 18:58:40 UTC

svn commit: r1735469 - /openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk

Author: damjan
Date: Thu Mar 17 17:58:39 2016
New Revision: 1735469

URL: http://svn.apache.org/viewvc?rev=1735469&view=rev
Log:
Add a unit test that slipped through the cracks and would have broken the
build unless --disable-unit-tests was used.

Patch by: me


Added:
    openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk

Added: openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk
URL: http://svn.apache.org/viewvc/openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk?rev=1735469&view=auto
==============================================================================
--- openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk (added)
+++ openoffice/branches/gbuild-reintegration/main/sax/GoogleTest_sax.mk Thu Mar 17 17:58:39 2016
@@ -0,0 +1,41 @@
+###############################################################
+#  
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+#  
+#    http://www.apache.org/licenses/LICENSE-2.0
+#  
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+#  
+###############################################################
+
+
+$(eval $(call gb_GoogleTest_GoogleTest,sax_gtest))
+
+$(eval $(call gb_GoogleTest_add_exception_objects,sax_gtest, \
+	sax/qa/gtest/test_converter \
+))
+
+$(eval $(call gb_GoogleTest_add_linked_libs,sax_gtest, \
+	sax \
+	sal \
+	stl \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_GoogleTest_add_api,sax_gtest,\
+	udkapi \
+	offapi \
+))
+
+# vim: set noet sw=4 ts=4: