| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../../build/common.gypi', | 9 '../../../build/common.gypi', |
| 10 ], | 10 ], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 }], | 61 }], |
| 62 # arm specifics | 62 # arm specifics |
| 63 ['target_arch=="arm"', { | 63 ['target_arch=="arm"', { |
| 64 'sources': [ | 64 'sources': [ |
| 65 'arch/arm/nacl_dep_qualify_arch.c', | 65 'arch/arm/nacl_dep_qualify_arch.c', |
| 66 'arch/arm/nacl_qualify_fpu.c', | 66 'arch/arm/nacl_qualify_fpu.c', |
| 67 'arch/arm/nacl_qualify_sandbox_instrs.c', | 67 'arch/arm/nacl_qualify_sandbox_instrs.c', |
| 68 'arch/arm/nacl_qualify_unaligned.c', | 68 'arch/arm/nacl_qualify_unaligned.c', |
| 69 ], | 69 ], |
| 70 }], | 70 }], |
| 71 # mips specifics |
| 72 ['target_arch=="mipsel"', { |
| 73 'sources': [ |
| 74 'arch/mips/nacl_qualify_fpu.c', |
| 75 ], |
| 76 }], |
| 71 ], | 77 ], |
| 72 }], | 78 }], |
| 73 ], | 79 ], |
| 74 }, | 80 }, |
| 75 'targets': [ | 81 'targets': [ |
| 76 { | 82 { |
| 77 'target_name': 'platform_qual_lib', | 83 'target_name': 'platform_qual_lib', |
| 78 'type': 'static_library', | 84 'type': 'static_library', |
| 79 'variables': { | 85 'variables': { |
| 80 'target_base': 'pqlib', | 86 'target_base': 'pqlib', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 111 #if env.Bit('mac'): | 117 #if env.Bit('mac'): |
| 112 # vcpuid_env.Append(CCFLAGS = ['-mdynamic-no-pic']) | 118 # vcpuid_env.Append(CCFLAGS = ['-mdynamic-no-pic']) |
| 113 #if env.Bit('linux'): | 119 #if env.Bit('linux'): |
| 114 # vcpuid_env.Append(CCFLAGS = ['-msse3']) | 120 # vcpuid_env.Append(CCFLAGS = ['-msse3']) |
| 115 #nacl_vcpuid = vcpuid_env.ComponentLibrary('vcpuid', 'vcpuid.c') | 121 #nacl_vcpuid = vcpuid_env.ComponentLibrary('vcpuid', 'vcpuid.c') |
| 116 #env.Append(LIBS = ['vcpuid', 'platform_qual_lib', 'ncvalidate']) | 122 #env.Append(LIBS = ['vcpuid', 'platform_qual_lib', 'ncvalidate']) |
| 117 # | 123 # |
| 118 #env.ComponentProgram('platform_qual_test', 'platform_qual_test.c') | 124 #env.ComponentProgram('platform_qual_test', 'platform_qual_test.c') |
| 119 #env.ComponentProgram('nacl_cpuwhitelist_test', 'nacl_cpuwhitelist_test.c') | 125 #env.ComponentProgram('nacl_cpuwhitelist_test', 'nacl_cpuwhitelist_test.c') |
| 120 # | 126 # |
| OLD | NEW |