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

Side by Side Diff: src/trusted/cpu_features/cpu_features.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. Created 7 years, 2 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 unified diff | Download patch
« no previous file with comments | « build/untrusted.gypi ('k') | src/trusted/platform_qualify/platform_qualify.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « build/untrusted.gypi ('k') | src/trusted/platform_qualify/platform_qualify.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698