mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
validate: Move plugins to the toplevel directory
Summary: Otherwise we end up with circular / complicated dependencies between Validate, its libraries, and the plugins Depends on D203 Reviewers: Mathieu_Du Differential Revision: http://phabricator.freedesktop.org/D204
This commit is contained in:
parent
83a8835a65
commit
13864f4998
10 changed files with 15 additions and 14 deletions
|
@ -4,6 +4,7 @@ SUBDIRS = \
|
|||
common \
|
||||
data \
|
||||
gst \
|
||||
plugins \
|
||||
launcher \
|
||||
tools \
|
||||
pkgconfig \
|
||||
|
|
|
@ -303,10 +303,10 @@ gst/Makefile
|
|||
gst/validate/Makefile
|
||||
gst/preload/Makefile
|
||||
gst/overrides/Makefile
|
||||
gst/plugins/Makefile
|
||||
gst/plugins/fault_injection/Makefile
|
||||
gst/plugins/gapplication/Makefile
|
||||
gst/plugins/gtk/Makefile
|
||||
plugins/Makefile
|
||||
plugins/fault_injection/Makefile
|
||||
plugins/gapplication/Makefile
|
||||
plugins/gtk/Makefile
|
||||
tests/Makefile
|
||||
tests/check/Makefile
|
||||
pkgconfig/Makefile
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS = validate overrides plugins
|
||||
SUBDIRS = validate overrides
|
||||
|
||||
if HAVE_LD_PRELOAD
|
||||
SUBDIRS += preload
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#endif
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include "../../validate/gst-validate-scenario.h"
|
||||
#include "../../gst/validate/gst-validate-scenario.h"
|
||||
|
||||
#if defined(__gnu_linux__) && !defined(__ANDROID__) && !defined (ANDROID)
|
||||
|
|
@ -30,9 +30,9 @@
|
|||
#include <gst/gst.h>
|
||||
#include <gio/gio.h>
|
||||
|
||||
#include "../../validate/validate.h"
|
||||
#include "../../validate/gst-validate-scenario.h"
|
||||
#include "../../validate/gst-validate-utils.h"
|
||||
#include "../../gst/validate/validate.h"
|
||||
#include "../../gst/validate/gst-validate-scenario.h"
|
||||
#include "../../gst/validate/gst-validate-utils.h"
|
||||
|
||||
|
||||
static gboolean
|
|
@ -31,11 +31,11 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdk.h>
|
||||
|
||||
#include "../../validate/gst-validate-report.h"
|
||||
#include "../../validate/gst-validate-reporter.h"
|
||||
#include "../../validate/validate.h"
|
||||
#include "../../validate/gst-validate-scenario.h"
|
||||
#include "../../validate/gst-validate-utils.h"
|
||||
#include "../../gst/validate/gst-validate-report.h"
|
||||
#include "../../gst/validate/gst-validate-reporter.h"
|
||||
#include "../../gst/validate/validate.h"
|
||||
#include "../../gst/validate/gst-validate-scenario.h"
|
||||
#include "../../gst/validate/gst-validate-utils.h"
|
||||
|
||||
#define ACTION_GDKEVENTS_QUARK g_quark_from_static_string("ACTION_GDKEVENTS_QUARK")
|
||||
static GList *awaited_actions = NULL; /* A list of GstValidateAction to be executed */
|
Loading…
Reference in a new issue