Fix makefile for x11 dependency flags

BUG=chromium:381565
TEST=build with USE_VAAPI=yes
Change-Id: Ia6fb94593f6adfb35b084311aa9122a9723a9cbc
Previous-Reviewed-on: https://chromium-review.googlesource.com/203230
(cherry picked from commit cbec2fb10b401d0432d4be8989c13435206d7def)
Reviewed-on: https://chromium-review.googlesource.com/205743
Reviewed-by: Wu-Cheng Li <wuchengli@chromium.org>
Commit-Queue: Kuang-che Wu <kcwu@chromium.org>
Tested-by: Kuang-che Wu <kcwu@chromium.org>
diff --git a/Makefile b/Makefile
index 7d85181..7224708 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@
 USE_VAAPI ?= $(if $(filter $(ARCH),amd64 x86),yes,no)
 ifeq ($(USE_VAAPI),yes)
   CPPFLAGS += -DHAS_VAAPI
-  PC_DEPS += libva-x11
+  PC_DEPS += libva-x11 x11
   VAAPI_OBJS = util_vaapi.o
 endif