| 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 99d984073b81519b7d8d498293d519f4a74c7618..6c732abd594fcf532782ecee084b659c94842787 100644
 | 
| --- a/site_scons/site_tools/library_deps.py
 | 
| +++ b/site_scons/site_tools/library_deps.py
 | 
| @@ -182,6 +182,14 @@ PLATFORM_LIBRARY_DEPENDENCIES = {
 | 
|              'arm_validator_core',
 | 
|              ],
 | 
|          },
 | 
| +    'mips32': {
 | 
| +        'ncvalidate_mips': [
 | 
| +            'mips_validator_core',
 | 
| +            ],
 | 
| +        'validators': [
 | 
| +            'ncvalidate_mips',
 | 
| +            ],
 | 
| +        },
 | 
|      }
 | 
|  
 | 
|  
 | 
| @@ -213,7 +221,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:
 | 
| 
 |