Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: main.scons

Issue 155188: Removing unneeded EffectStream class. Cleaning up data assignment for stream ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « command_buffer/service/win/d3d9/effect_d3d9.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: main.scons
===================================================================
--- main.scons (revision 20070)
+++ main.scons (working copy)
@@ -165,9 +165,10 @@
# All the libs required for HTP layer on the host.
nacl_htp_all_libs = [
nacl_imc_lib,
- 'google_nacl_npruntime', # The lib reguired for the NPAPI bridge.
+ 'google_nacl_imc_c',
'nrd_xfer',
'gio',
+ 'naclthread',
]
binaries_env = base_env.Clone()
@@ -192,7 +193,7 @@
# TODO: this is ugly, should all be rolling into builder.
NACL_OBJ_ROOT = '$NACL_DIR/scons-out/$NACL_VARIANT/obj',
NACL_LIB_DIR = '$NACL_DIR/scons-out/$NACL_VARIANT/lib',
- NACL_HTP_LIBS = nacl_imc_all_libs,
+ NACL_HTP_LIBS = nacl_htp_all_libs,
)
# This function adds a path to a windows environment variable like PATH,
@@ -225,10 +226,7 @@
else:
script_suffix = '.sh'
- if variant == 'nacl':
- build_libs = nacl_htp_all_libs
- else :
- build_libs = nacl_imc_all_libs
+ build_libs = nacl_htp_all_libs
targets = ['$NACL_LIB_DIR/${LIBPREFIX}' + f + '${LIBSUFFIX}'
for f in build_libs]
@@ -505,7 +503,7 @@
'o3dCmdBuf_client',
'o3dCmdBuf_common',
'd3d9', 'dxerr', 'd3dx9'
- ] + nacl_imc_all_libs
+ ] + nacl_htp_all_libs
)
windows_cb_debug_env = windows_cb_env.Clone(
« no previous file with comments | « command_buffer/service/win/d3d9/effect_d3d9.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698