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

Side by Side Diff: components/nacl.gyp

Issue 140573003: Connect PPAPI IPC channels for non-SFI mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build error Created 6 years, 10 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
« no previous file with comments | « no previous file | components/nacl/loader/DEPS » ('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 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 'targets': [ 174 'targets': [
175 { 175 {
176 'target_name': 'nacl_helper', 176 'target_name': 'nacl_helper',
177 'type': 'executable', 177 'type': 'executable',
178 'include_dirs': [ 178 'include_dirs': [
179 '..', 179 '..',
180 ], 180 ],
181 'dependencies': [ 181 'dependencies': [
182 'nacl', 182 'nacl',
183 'nacl_common', 183 'nacl_common',
184 '../components/tracing.gyp:tracing',
184 '../crypto/crypto.gyp:crypto', 185 '../crypto/crypto.gyp:crypto',
185 '../sandbox/sandbox.gyp:libc_urandom_override', 186 '../sandbox/sandbox.gyp:libc_urandom_override',
186 '../sandbox/sandbox.gyp:sandbox', 187 '../sandbox/sandbox.gyp:sandbox',
188 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
187 ], 189 ],
188 'defines': [ 190 'defines': [
189 '<@(nacl_defines)', 191 '<@(nacl_defines)',
190 # Allow .cc files to know if they're being compiled as part 192 # Allow .cc files to know if they're being compiled as part
191 # of nacl_helper. 193 # of nacl_helper.
192 'IN_NACL_HELPER=1', 194 'IN_NACL_HELPER=1',
193 ], 195 ],
194 'sources': [ 196 'sources': [
195 'nacl/loader/nacl_helper_linux.cc', 197 'nacl/loader/nacl_helper_linux.cc',
196 'nacl/loader/nacl_helper_linux.h', 198 'nacl/loader/nacl_helper_linux.h',
197 'nacl/loader/nacl_sandbox_linux.cc', 199 'nacl/loader/nacl_sandbox_linux.cc',
198 'nacl/loader/nonsfi/abi_conversion.cc', 200 'nacl/loader/nonsfi/abi_conversion.cc',
199 'nacl/loader/nonsfi/abi_conversion.h', 201 'nacl/loader/nonsfi/abi_conversion.h',
200 'nacl/loader/nonsfi/elf_loader.cc', 202 'nacl/loader/nonsfi/elf_loader.cc',
201 'nacl/loader/nonsfi/elf_loader.h', 203 'nacl/loader/nonsfi/elf_loader.h',
202 'nacl/loader/nonsfi/irt_basic.cc', 204 'nacl/loader/nonsfi/irt_basic.cc',
203 'nacl/loader/nonsfi/irt_clock.cc', 205 'nacl/loader/nonsfi/irt_clock.cc',
204 'nacl/loader/nonsfi/irt_fdio.cc', 206 'nacl/loader/nonsfi/irt_fdio.cc',
205 'nacl/loader/nonsfi/irt_futex.cc', 207 'nacl/loader/nonsfi/irt_futex.cc',
206 'nacl/loader/nonsfi/irt_interfaces.cc', 208 'nacl/loader/nonsfi/irt_interfaces.cc',
207 'nacl/loader/nonsfi/irt_interfaces.h', 209 'nacl/loader/nonsfi/irt_interfaces.h',
208 'nacl/loader/nonsfi/irt_memory.cc', 210 'nacl/loader/nonsfi/irt_memory.cc',
211 'nacl/loader/nonsfi/irt_ppapi.cc',
209 'nacl/loader/nonsfi/irt_thread.cc', 212 'nacl/loader/nonsfi/irt_thread.cc',
210 'nacl/loader/nonsfi/irt_util.h', 213 'nacl/loader/nonsfi/irt_util.h',
211 'nacl/loader/nonsfi/nonsfi_main.cc', 214 'nacl/loader/nonsfi/nonsfi_main.cc',
212 'nacl/loader/nonsfi/nonsfi_main.h', 215 'nacl/loader/nonsfi/nonsfi_main.h',
213 '../base/posix/unix_domain_socket_linux.cc', 216 '../base/posix/unix_domain_socket_linux.cc',
214 '../content/common/child_process_sandbox_support_impl_shm_linux. cc', 217 '../content/common/child_process_sandbox_support_impl_shm_linux. cc',
215 '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.c c', 218 '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.c c',
216 '../content/common/sandbox_linux/sandbox_init_linux.cc', 219 '../content/common/sandbox_linux/sandbox_init_linux.cc',
217 '../content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc', 220 '../content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc',
218 '../content/public/common/content_switches.cc', 221 '../content/public/common/content_switches.cc',
222 '../ppapi/proxy/plugin_main_irt.cc',
223 '../ppapi/proxy/plugin_main_irt.h',
219 ], 224 ],
220 'conditions': [ 225 'conditions': [
221 ['toolkit_uses_gtk == 1', { 226 ['toolkit_uses_gtk == 1', {
222 'dependencies': [ 227 'dependencies': [
223 '../build/linux/system.gyp:gtk', 228 '../build/linux/system.gyp:gtk',
224 ], 229 ],
225 }], 230 }],
226 ['use_glib == 1', { 231 ['use_glib == 1', {
227 'dependencies': [ 232 'dependencies': [
228 '../build/linux/system.gyp:glib', 233 '../build/linux/system.gyp:glib',
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'nacl/common/nacl_types.h', 396 'nacl/common/nacl_types.h',
392 'nacl/common/pnacl_types.cc', 397 'nacl/common/pnacl_types.cc',
393 'nacl/common/pnacl_types.h', 398 'nacl/common/pnacl_types.h',
394 ], 399 ],
395 'include_dirs': [ 400 'include_dirs': [
396 '..', 401 '..',
397 ], 402 ],
398 }, 403 },
399 ] 404 ]
400 } 405 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/loader/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698