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

Side by Side Diff: components/nacl.gyp

Issue 193313002: Pepper: Move GetSandboxISA() to PPB_NaCl_Private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nexe_arch.h cleanup Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'nacl/nacl_defines.gypi', 10 'nacl/nacl_defines.gypi',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'target_name': 'nacl_renderer', 142 'target_name': 'nacl_renderer',
143 'type': 'static_library', 143 'type': 'static_library',
144 'sources': [ 144 'sources': [
145 'nacl/renderer/pnacl_translation_resource_host.cc', 145 'nacl/renderer/pnacl_translation_resource_host.cc',
146 'nacl/renderer/pnacl_translation_resource_host.h', 146 'nacl/renderer/pnacl_translation_resource_host.h',
147 'nacl/renderer/ppb_nacl_private_impl.cc', 147 'nacl/renderer/ppb_nacl_private_impl.cc',
148 'nacl/renderer/ppb_nacl_private_impl.h', 148 'nacl/renderer/ppb_nacl_private_impl.h',
149 'nacl/renderer/trusted_plugin_channel.cc', 149 'nacl/renderer/trusted_plugin_channel.cc',
150 'nacl/renderer/trusted_plugin_channel.h', 150 'nacl/renderer/trusted_plugin_channel.h',
151 ], 151 ],
152 'conditions': [
153 ['target_arch=="arm"', {
154 'sources': [
155 'nacl/renderer/arch_arm/sandbox_isa.cc',
156 ],
157 }],
158 ['target_arch=="mips"', {
159 'sources': [
160 'nacl/renderer/arch_mips/sandbox_isa.cc',
161 ],
162 }],
163 ['target_arch=="ia32"', {
164 'sources': [
165 'nacl/renderer/arch_x86/sandbox_isa.cc',
166 ],
167 }],
168 ['target_arch=="x64"', {
169 'sources': [
170 'nacl/renderer/arch_x86/sandbox_isa.cc',
dmichael (off chromium) 2014/03/10 22:49:35 I seem to remember that these sandbox_isa files ar
171 ],
172 'defines': [
173 'TARGET_ARCH_X64',
dmichael (off chromium) 2014/03/10 22:49:35 Can you just use ARCH_CPU_64_BITS? https://code.go
174 ],
175 }],
176 ],
152 'include_dirs': [ 177 'include_dirs': [
153 '..', 178 '..',
154 ], 179 ],
155 'dependencies': [ 180 'dependencies': [
156 '../content/content.gyp:content_renderer', 181 '../content/content.gyp:content_renderer',
157 '../third_party/WebKit/public/blink.gyp:blink', 182 '../third_party/WebKit/public/blink.gyp:blink',
158 '../webkit/common/webkit_common.gyp:webkit_common', 183 '../webkit/common/webkit_common.gyp:webkit_common',
159 ], 184 ],
160 'defines': [ 185 'defines': [
161 '<@(nacl_defines)', 186 '<@(nacl_defines)',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'nacl/common/nacl_types.h', 420 'nacl/common/nacl_types.h',
396 'nacl/common/pnacl_types.cc', 421 'nacl/common/pnacl_types.cc',
397 'nacl/common/pnacl_types.h', 422 'nacl/common/pnacl_types.h',
398 ], 423 ],
399 'include_dirs': [ 424 'include_dirs': [
400 '..', 425 '..',
401 ], 426 ],
402 }, 427 },
403 ] 428 ]
404 } 429 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/renderer/arch_arm/sandbox_isa.cc » ('j') | components/nacl/renderer/arch_x86/sandbox_isa.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698