forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 772424 - Reenable TestWinDND.cpp r=handyman
TestWinDND.cpp was disabled when libxul became a separate library which could no longer be used by cppunittests. Add a few shims to turn it into a gtest instead, and hook it back up. Differential Revision: https://phabricator.services.mozilla.com/D171280
- Loading branch information
1 parent
75aa120
commit 1fe179b
Showing
3 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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/. | ||
|
||
UNIFIED_SOURCES += [ | ||
"TestWinDND.cpp", | ||
] | ||
|
||
LOCAL_INCLUDES += [ | ||
"/widget", | ||
"/widget/windows", | ||
] | ||
|
||
FINAL_LIBRARY = "xul-gtest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ GeckoCppUnitTests( | |
linkage=None, | ||
) | ||
|
||
DIRS = ["gtest"] | ||
|
||
LOCAL_INCLUDES += [] | ||
|
||
OS_LIBS += [ | ||
|