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_Jar_Jar,web,SRCDIR)) 25 26$(eval $(call gb_Jar_add_jars,web,\ 27 $(OUTDIR)/bin/ridl.jar \ 28 $(OUTDIR)/bin/unoil.jar \ 29 $(OUTDIR)/bin/jurt.jar \ 30 $(OUTDIR)/bin/juh.jar \ 31 $(OUTDIR)/bin/java_uno.jar \ 32 $(OUTDIR)/bin/commonwizards.jar \ 33)) 34 35$(eval $(call gb_Jar_set_packageroot,web,com)) 36 37$(eval $(call gb_Jar_set_manifest,web,$(SRCDIR)/wizards/com/sun/star/wizards/web/MANIFEST.MF)) 38 39$(eval $(call gb_Jar_set_jarclasspath,web,\ 40 commonwizards.jar \ 41)) 42 43$(eval $(call gb_Jar_add_sourcefiles,web,\ 44 wizards/com/sun/star/wizards/web/AbstractErrorHandler \ 45 wizards/com/sun/star/wizards/web/BackgroundsDialog \ 46 wizards/com/sun/star/wizards/web/CallWizard \ 47 wizards/com/sun/star/wizards/web/ErrorHandler \ 48 wizards/com/sun/star/wizards/web/ExtensionVerifier \ 49 wizards/com/sun/star/wizards/web/FTPDialog \ 50 wizards/com/sun/star/wizards/web/FTPDialogResources \ 51 wizards/com/sun/star/wizards/web/IconsDialog \ 52 wizards/com/sun/star/wizards/web/ImageListDialog \ 53 wizards/com/sun/star/wizards/web/LogTaskListener \ 54 wizards/com/sun/star/wizards/web/Process \ 55 wizards/com/sun/star/wizards/web/ProcessErrorHandler \ 56 wizards/com/sun/star/wizards/web/ProcessErrors \ 57 wizards/com/sun/star/wizards/web/ProcessStatusRenderer \ 58 wizards/com/sun/star/wizards/web/StatusDialog \ 59 wizards/com/sun/star/wizards/web/StylePreview \ 60 wizards/com/sun/star/wizards/web/TOCPreview \ 61 wizards/com/sun/star/wizards/web/WebWizard \ 62 wizards/com/sun/star/wizards/web/WebWizardConst \ 63 wizards/com/sun/star/wizards/web/WebWizardDialog \ 64 wizards/com/sun/star/wizards/web/WebWizardDialogResources \ 65 wizards/com/sun/star/wizards/web/WWD_Events \ 66 wizards/com/sun/star/wizards/web/WWD_General \ 67 wizards/com/sun/star/wizards/web/WWD_Startup \ 68 wizards/com/sun/star/wizards/web/WWHID \ 69 wizards/com/sun/star/wizards/web/data/CGArgument \ 70 wizards/com/sun/star/wizards/web/data/CGContent \ 71 wizards/com/sun/star/wizards/web/data/CGDesign \ 72 wizards/com/sun/star/wizards/web/data/CGDocument \ 73 wizards/com/sun/star/wizards/web/data/CGExporter \ 74 wizards/com/sun/star/wizards/web/data/CGFilter \ 75 wizards/com/sun/star/wizards/web/data/CGGeneralInfo \ 76 wizards/com/sun/star/wizards/web/data/CGIconSet \ 77 wizards/com/sun/star/wizards/web/data/CGImage \ 78 wizards/com/sun/star/wizards/web/data/CGLayout \ 79 wizards/com/sun/star/wizards/web/data/CGPublish \ 80 wizards/com/sun/star/wizards/web/data/CGSession \ 81 wizards/com/sun/star/wizards/web/data/CGSessionName \ 82 wizards/com/sun/star/wizards/web/data/CGSettings \ 83 wizards/com/sun/star/wizards/web/data/CGStyle \ 84 wizards/com/sun/star/wizards/web/data/ConfigSetItem \ 85 wizards/com/sun/star/wizards/web/data/TypeDetection \ 86 wizards/com/sun/star/wizards/web/export/AbstractExporter \ 87 wizards/com/sun/star/wizards/web/export/ConfiguredExporter \ 88 wizards/com/sun/star/wizards/web/export/CopyExporter \ 89 wizards/com/sun/star/wizards/web/export/Exporter \ 90 wizards/com/sun/star/wizards/web/export/FilterExporter \ 91 wizards/com/sun/star/wizards/web/export/ImpressHTMLExporter \ 92 wizards/com/sun/star/wizards/web/status/ErrorLog \ 93 wizards/com/sun/star/wizards/web/status/ErrorReporter \ 94 wizards/com/sun/star/wizards/web/status/LogTaskListener \ 95 wizards/com/sun/star/wizards/web/status/Task \ 96 wizards/com/sun/star/wizards/web/status/TaskEvent \ 97 wizards/com/sun/star/wizards/web/status/TaskListener \ 98)) 99 100$(eval $(call gb_Jar_set_componentfile,web,wizards/com/sun/star/wizards/web/web,OOO)) 101 102# vim: set noet sw=4 ts=4: 103