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

Side by Side Diff: src/trusted/platform_qualify/platform_qualify.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
OLDNEW
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
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
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 #
OLDNEW
« no previous file with comments | « src/trusted/cpu_features/cpu_features.gyp ('k') | src/trusted/service_runtime/linux/nacl_bootstrap.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698