Fix Ninja LLDB build on Linux (via cmake -G Ninja)
- resolved circular dependency issue by making liblldb depend directly on LLDBWrapPython.cpp
- removed use of '..' for relative directories -- ninja doesn't like this
- fixed build-order problem



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176517 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 859dc80..f144fe2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -143,9 +143,7 @@
   # but it is simple enough to make all of LLDB depend on some of those

   # headers without negatively impacting much of anything.

   set (LLDB_DEPENDENCIES

-    ClangDiagnosticCommon

-    #ClangDiagnosticFrontend

-    #libclang.so

+    libclang

     )

   add_dependencies(${name} ${LLDB_DEPENDENCIES})