diff options
author | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 22:17:10 +0000 |
---|---|---|
committer | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 22:17:10 +0000 |
commit | 1d3a6d08fcc0759fdd589e48a85f3331cc9f7a98 (patch) | |
tree | fe614bc0b7b1303f746eb2a74408fdaaba78adac /o3d/main.scons | |
parent | 5e892c20535dcbeae099f92148feea8473cf1445 (diff) | |
download | chromium_src-1d3a6d08fcc0759fdd589e48a85f3331cc9f7a98.zip chromium_src-1d3a6d08fcc0759fdd589e48a85f3331cc9f7a98.tar.gz chromium_src-1d3a6d08fcc0759fdd589e48a85f3331cc9f7a98.tar.bz2 |
Code to load the software renderer and initialize it. Code to force the software renderer enabled with registry entry even if hardware is capable. Build scripts copy the software renderer dll to the plugin directory on an intall build.
Review URL: http://codereview.chromium.org/147039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19070 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/main.scons')
-rw-r--r-- | o3d/main.scons | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/o3d/main.scons b/o3d/main.scons index 1f026fc..192d82a 100644 --- a/o3d/main.scons +++ b/o3d/main.scons @@ -87,6 +87,9 @@ base_env.Append( DOCS_DIR = '$DESTINATION_ROOT/docs', CPPPATH = [ + # The internal dir is first so that headers in internal can replace + # those in external. + '$INTERNAL_DIR', '$SCONSTRUCT_DIR/..', '$SCONSTRUCT_DIR', '$CHROME_SRC_DIR', @@ -308,6 +311,7 @@ windows_env = binaries_env.Clone( windows_env.Append( CPPPATH = [ '$PLATFORM_SDK_VISTA_6_0_DIR/Include', + '$SWIFTSHADER_DIR', ], LIBPATH = [ '$PLATFORM_SDK_VISTA_6_0_DIR/Lib', |