From d228afb548592e62837001fe6baa3e2c7ef70da3 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Wed, 27 Aug 2014 10:12:11 -0700 Subject: [PATCH] Bug 1058101 - Flatten dom/cellbroadcast/src/ into parent directory. r=mccr8 --HG-- rename : dom/cellbroadcast/src/CellBroadcast.cpp => dom/cellbroadcast/CellBroadcast.cpp rename : dom/cellbroadcast/src/CellBroadcast.h => dom/cellbroadcast/CellBroadcast.h --- dom/cellbroadcast/{src => }/CellBroadcast.cpp | 0 dom/cellbroadcast/{src => }/CellBroadcast.h | 0 dom/cellbroadcast/moz.build | 14 +++++++++++++- dom/cellbroadcast/src/moz.build | 17 ----------------- 4 files changed, 13 insertions(+), 18 deletions(-) rename dom/cellbroadcast/{src => }/CellBroadcast.cpp (100%) rename dom/cellbroadcast/{src => }/CellBroadcast.h (100%) delete mode 100644 dom/cellbroadcast/src/moz.build diff --git a/dom/cellbroadcast/src/CellBroadcast.cpp b/dom/cellbroadcast/CellBroadcast.cpp similarity index 100% rename from dom/cellbroadcast/src/CellBroadcast.cpp rename to dom/cellbroadcast/CellBroadcast.cpp diff --git a/dom/cellbroadcast/src/CellBroadcast.h b/dom/cellbroadcast/CellBroadcast.h similarity index 100% rename from dom/cellbroadcast/src/CellBroadcast.h rename to dom/cellbroadcast/CellBroadcast.h diff --git a/dom/cellbroadcast/moz.build b/dom/cellbroadcast/moz.build index 665ae0da05f3..2a359ed6ea18 100644 --- a/dom/cellbroadcast/moz.build +++ b/dom/cellbroadcast/moz.build @@ -4,4 +4,16 @@ # 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/. -DIRS += ['interfaces', 'src'] +DIRS += ['interfaces'] + +EXPORTS.mozilla.dom += [ + 'CellBroadcast.h', +] + +SOURCES += [ + 'CellBroadcast.cpp', +] + +FAIL_ON_WARNINGS = True + +FINAL_LIBRARY = 'xul' diff --git a/dom/cellbroadcast/src/moz.build b/dom/cellbroadcast/src/moz.build deleted file mode 100644 index db4631a4f9e9..000000000000 --- a/dom/cellbroadcast/src/moz.build +++ /dev/null @@ -1,17 +0,0 @@ -# -*- 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/. - -EXPORTS.mozilla.dom += [ - 'CellBroadcast.h', -] - -SOURCES += [ - 'CellBroadcast.cpp', -] - -FAIL_ON_WARNINGS = True - -FINAL_LIBRARY = 'xul'