Add graphics_WebGLManyPlanetsDeep test.

Also add the HTML and JavaScript source files (pulled from the public
khronos WebGL repository) to deps/webgl_mpd.

BUG=chromium:263300
TEST=test_that.py --fast <DUT IP> graphics_WebGLManyPlanetsDeep

Change-Id: Ia46664f89488cef6414c142e727e8e1e52522731
Reviewed-on: https://chromium-review.googlesource.com/57597
Reviewed-by: Ricky Liang <[email protected]>
Commit-Queue: Ricky Liang <[email protected]>
Tested-by: Ricky Liang <[email protected]>
diff --git a/client/deps/webgl_mpd/common.py b/client/deps/webgl_mpd/common.py
new file mode 100644
index 0000000..9c3d751
--- /dev/null
+++ b/client/deps/webgl_mpd/common.py
@@ -0,0 +1,15 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+import sys
+
+dirname = os.path.dirname(sys.modules[__name__].__file__)
+# Load setup_modules from client_dir (two level up from current dir).
+client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
+sys.path.insert(0, client_dir)
+import setup_modules
+sys.path.pop(0)
+setup_modules.setup(base_path=client_dir,
+                    root_module_name="autotest_lib.client")