gecko/embedding/components/find/moz.build
Birunthan Mohanathas 798ded18be Bug 1054703 - Part 4: Flatten embedding/components/find/{public,src}/ into parent directory. r=bsmedberg
--HG--
rename : embedding/components/find/src/nsFind.cpp => embedding/components/find/nsFind.cpp
rename : embedding/components/find/src/nsFind.h => embedding/components/find/nsFind.h
rename : embedding/components/find/public/nsIFind.idl => embedding/components/find/nsIFind.idl
rename : embedding/components/find/public/nsIWebBrowserFind.idl => embedding/components/find/nsIWebBrowserFind.idl
rename : embedding/components/find/src/nsWebBrowserFind.cpp => embedding/components/find/nsWebBrowserFind.cpp
rename : embedding/components/find/src/nsWebBrowserFind.h => embedding/components/find/nsWebBrowserFind.h
2014-08-20 10:27:16 -07:00

22 lines
518 B
Python

# -*- Mode: python; c-basic-offset: 4; 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/.
XPIDL_SOURCES += [
'nsIFind.idl',
'nsIWebBrowserFind.idl',
]
XPIDL_MODULE = 'find'
UNIFIED_SOURCES += [
'nsFind.cpp',
'nsWebBrowserFind.cpp',
]
FAIL_ON_WARNINGS = True
FINAL_LIBRARY = 'xul'