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

Unified Diff: site_scons/site_tools/library_deps.py

Issue 10919162: [MIPS] Implementation of sel_ldr for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Rebase (Saturday morning). Created 8 years, 3 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 | « SConstruct ('k') | src/include/concurrency_ops.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site_scons/site_tools/library_deps.py
diff --git a/site_scons/site_tools/library_deps.py b/site_scons/site_tools/library_deps.py
index 3a97df082e58d07a5c42789c3ef3416c03787e13..355c0d60f99c1d72bd467d6953919824fbe5c149 100644
--- a/site_scons/site_tools/library_deps.py
+++ b/site_scons/site_tools/library_deps.py
@@ -186,6 +186,14 @@ PLATFORM_LIBRARY_DEPENDENCIES = {
'arm_validator_core',
],
},
+ 'mips32': {
+ 'ncvalidate_mips': [
+ 'mips_validator_core',
+ ],
+ 'validators': [
+ 'ncvalidate_mips',
+ ],
+ },
}
@@ -217,7 +225,7 @@ def AddLibDeps(env, platform, libraries):
PLATFORM_LIBRARY_DEPENDENCIES.get(platform, {}).get(library, []))
if env['NACL_BUILD_FAMILY'] != 'TRUSTED':
ret.extend(UNTRUSTED_LIBRARY_DEPENDENCIES.get(library, []))
- if library == 'validators' and not env.Bit('target_arm'):
+ if library == 'validators' and env.Bit('target_x86'):
if env.Bit('validator_ragel'):
ret.append(env.NaClTargetArchSuffix('dfa_validate_caller'))
else:
« no previous file with comments | « SConstruct ('k') | src/include/concurrency_ops.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698