Bug 1374389: Prevent compilation error due to object size being too big. r?glandium draft
authorJean-Yves Avenard <jyavenard@mozilla.com>
Mon, 19 Jun 2017 21:47:34 +0200
changeset 597158 b7ff127481ffa1c7ae775346d81210967d39d470
parent 597156 9da766553f6615aac6c65886b366e26bd05ee90d
child 597440 28f8673e17e9b10ac5e5b982a714959790fb4382
push id64853
push userbmo:jyavenard@mozilla.com
push dateTue, 20 Jun 2017 07:38:42 +0000
reviewersglandium
bugs1374389
milestone56.0a1
Bug 1374389: Prevent compilation error due to object size being too big. r?glandium Prevent on Windows the error: fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj MozReview-Commit-ID: 8j0fT38gkAZ
dom/media/moz.build
--- a/dom/media/moz.build
+++ b/dom/media/moz.build
@@ -1,14 +1,16 @@
 # -*- Mode: python; 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/.
 
+FILES_PER_UNIFIED_FILE = 6
+
 with Files('*'):
     BUG_COMPONENT = ('Core', 'Audio/Video')
 
 with Files('test/**'):
     BUG_COMPONENT = ('Core', 'Audio/Video: Playback')
 
 with Files('gtest/TestGMP*'):
     BUG_COMPONENT = ('Core', 'Audio/Video: GMP')