1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20#************************************************************** 21 22 23 24$(eval $(call gb_Library_Library,unoxml)) 25 26$(eval $(call gb_Library_set_componentfile,unoxml,unoxml/source/service/unoxml)) 27 28$(eval $(call gb_Library_set_include,unoxml,\ 29 $$(INCLUDE) \ 30)) 31 32$(eval $(call gb_Library_add_api,unoxml,\ 33 udkapi \ 34 offapi \ 35)) 36 37$(eval $(call gb_Library_add_linked_libs,unoxml,\ 38 ucbhelper \ 39 sax \ 40 comphelper \ 41 cppuhelper \ 42 cppu \ 43 sal \ 44 stl \ 45 $(gb_STDLIBS) \ 46)) 47 48$(call gb_Library_use_external,unoxml,libxml2) 49 50$(eval $(call gb_Library_add_exception_objects,unoxml,\ 51 unoxml/source/dom/node \ 52 unoxml/source/dom/document \ 53 unoxml/source/dom/element \ 54 unoxml/source/dom/attr \ 55 unoxml/source/dom/cdatasection \ 56 unoxml/source/dom/characterdata \ 57 unoxml/source/dom/comment \ 58 unoxml/source/dom/documentbuilder \ 59 unoxml/source/dom/documentfragment \ 60 unoxml/source/dom/documenttype \ 61 unoxml/source/dom/entity \ 62 unoxml/source/dom/entityreference \ 63 unoxml/source/dom/notation \ 64 unoxml/source/dom/processinginstruction \ 65 unoxml/source/dom/text \ 66 unoxml/source/dom/domimplementation \ 67 unoxml/source/dom/elementlist \ 68 unoxml/source/dom/childlist \ 69 unoxml/source/dom/notationsmap \ 70 unoxml/source/dom/entitiesmap \ 71 unoxml/source/dom/attributesmap \ 72 unoxml/source/dom/saxbuilder \ 73 unoxml/source/xpath/xpathobject \ 74 unoxml/source/xpath/nodelist \ 75 unoxml/source/xpath/xpathapi \ 76 unoxml/source/events/event \ 77 unoxml/source/events/eventdispatcher \ 78 unoxml/source/events/mutationevent \ 79 unoxml/source/events/uievent \ 80 unoxml/source/events/mouseevent \ 81 unoxml/source/events/testlistener \ 82 unoxml/source/service/services \ 83)) 84 85# vim: set noet sw=4 ts=4: 86 87