diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-14 20:36:39 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-20 13:55:36 +0000 |
commit | 8c4892fb45ceeb870ff7f893a546cf33fafee7c4 (patch) | |
tree | 143b0fb746209f5ec0daf0d8d07db2232f10da9f | |
parent | 11749de7544fef7ccfee53f79c7617339fb6bf46 (diff) | |
download | UXP-8c4892fb45ceeb870ff7f893a546cf33fafee7c4.tar UXP-8c4892fb45ceeb870ff7f893a546cf33fafee7c4.tar.gz UXP-8c4892fb45ceeb870ff7f893a546cf33fafee7c4.tar.lz UXP-8c4892fb45ceeb870ff7f893a546cf33fafee7c4.tar.xz UXP-8c4892fb45ceeb870ff7f893a546cf33fafee7c4.zip |
Issue #80 - De-unify gfx/src
-rw-r--r-- | gfx/src/gfxTelemetry.cpp | 1 | ||||
-rw-r--r-- | gfx/src/moz.build | 8 | ||||
-rw-r--r-- | gfx/src/nsRegion.cpp | 1 |
3 files changed, 4 insertions, 6 deletions
diff --git a/gfx/src/gfxTelemetry.cpp b/gfx/src/gfxTelemetry.cpp index 9ea15dcbd..b027cde39 100644 --- a/gfx/src/gfxTelemetry.cpp +++ b/gfx/src/gfxTelemetry.cpp @@ -4,6 +4,7 @@ * 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/. */
#include "gfxTelemetry.h"
+#include "mozilla/Assertions.h"
namespace mozilla {
namespace gfx {
diff --git a/gfx/src/moz.build b/gfx/src/moz.build index ea707a340..b11fada66 100644 --- a/gfx/src/moz.build +++ b/gfx/src/moz.build @@ -56,11 +56,12 @@ if CONFIG['MOZ_X11']: 'X11Util.cpp', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'DriverCrashGuard.cpp', 'FilterSupport.cpp', 'gfxTelemetry.cpp', 'nsColor.cpp', + 'nsDeviceContext.cpp', 'nsFont.cpp', 'nsFontMetrics.cpp', 'nsRect.cpp', @@ -72,11 +73,6 @@ UNIFIED_SOURCES += [ 'TiledRegion.cpp', ] -# nsDeviceContext.cpp cannot be built in unified mode because it pulls in OS X system headers. -SOURCES += [ - 'nsDeviceContext.cpp', -] - include('/ipc/chromium/chromium-config.mozbuild') LOCAL_INCLUDES += [ diff --git a/gfx/src/nsRegion.cpp b/gfx/src/nsRegion.cpp index 3b0bec1e3..ed86704e8 100644 --- a/gfx/src/nsRegion.cpp +++ b/gfx/src/nsRegion.cpp @@ -5,6 +5,7 @@ #include "nsRegion.h" #include "nsTArray.h" +#include "gfx2DGlue.h" #include "gfxUtils.h" #include "mozilla/ToString.h" |