| OLD | NEW |
| 1 # Copyright 2013 The Native Client Authors. All rights reserved. | 1 # Copyright 2013 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can | 2 # Use of this source code is governed by a BSD-style license that can |
| 3 # be found in the LICENSE file. | 3 # be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 # ---------------------------------------------------------------------- | 6 # ---------------------------------------------------------------------- |
| 7 # Default settings | 7 # Default settings |
| 8 # ---------------------------------------------------------------------- | 8 # ---------------------------------------------------------------------- |
| 9 | 9 |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 # TODO(jfb) See TODO in build.scons on why x86 is built this way. | 41 # TODO(jfb) See TODO in build.scons on why x86 is built this way. |
| 42 'conditions': [ | 42 'conditions': [ |
| 43 ['target_arch=="ia32" or target_arch=="x64"', { | 43 ['target_arch=="ia32" or target_arch=="x64"', { |
| 44 'sources': [ | 44 'sources': [ |
| 45 'arch/arm/cpu_arm.c', | 45 'arch/arm/cpu_arm.c', |
| 46 'arch/mips/cpu_mips.c', | 46 'arch/mips/cpu_mips.c', |
| 47 'arch/x86/cpu_x86.c', | 47 'arch/x86/cpu_x86.c', |
| 48 'arch/x86/cpu_xgetbv.S', | 48 'arch/x86/cpu_xgetbv.S', |
| 49 ], | 49 ], |
| 50 }], | 50 }], |
| 51 ['target_arch=="arm" or target_arch=="mips"', { | 51 ['target_arch=="arm" or target_arch=="mipsel"', { |
| 52 'sources': [ | 52 'sources': [ |
| 53 'arch/arm/cpu_arm.c', | 53 'arch/arm/cpu_arm.c', |
| 54 'arch/mips/cpu_mips.c', | 54 'arch/mips/cpu_mips.c', |
| 55 ], | 55 ], |
| 56 }], | 56 }], |
| 57 ], | 57 ], |
| 58 'dependencies': [ | 58 'dependencies': [ |
| 59 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 59 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 77 ], | 77 ], |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | 79 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 ], | 82 ], |
| 83 }, | 83 }, |
| 84 ], | 84 ], |
| 85 ], | 85 ], |
| 86 } | 86 } |
| OLD | NEW |