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

Side by Side Diff: components/nacl.gyp

Issue 99133015: Linux Sandbox: split the GPU policies to their own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup InitGpuBrokerProcess. Created 7 years 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ], 181 ],
182 'defines': [ 182 'defines': [
183 '<@(nacl_defines)', 183 '<@(nacl_defines)',
184 ], 184 ],
185 'sources': [ 185 'sources': [
186 'nacl/loader/nacl_sandbox_linux.cc', 186 'nacl/loader/nacl_sandbox_linux.cc',
187 'nacl/loader/nacl_helper_linux.cc', 187 'nacl/loader/nacl_helper_linux.cc',
188 'nacl/loader/nacl_helper_linux.h', 188 'nacl/loader/nacl_helper_linux.h',
189 '../base/posix/unix_domain_socket_linux.cc', 189 '../base/posix/unix_domain_socket_linux.cc',
190 '../content/common/child_process_sandbox_support_impl_shm_linux. cc', 190 '../content/common/child_process_sandbox_support_impl_shm_linux. cc',
191 '../content/common/sandbox_bpf_base_policy_linux.cc', 191 '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.c c',
192 '../content/common/sandbox_init_linux.cc', 192 '../content/common/sandbox_linux/sandbox_bpf_gpu_policy_linux.cc ',
193 '../content/common/sandbox_seccomp_bpf_linux.cc', 193 '../content/common/sandbox_linux/sandbox_init_linux.cc',
194 '../content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc',
Jorge Lucangeli Obes 2013/12/12 21:37:21 Do we want to keep the sandbox_ prefixes inside th
jln (very slow on Chromium) 2013/12/12 22:15:14 Probably not. Let's see what piman@ says, I'll add
194 '../content/public/common/content_switches.cc', 195 '../content/public/common/content_switches.cc',
195 ], 196 ],
196 'conditions': [ 197 'conditions': [
197 ['toolkit_uses_gtk == 1', { 198 ['toolkit_uses_gtk == 1', {
198 'dependencies': [ 199 'dependencies': [
199 '../build/linux/system.gyp:gtk', 200 '../build/linux/system.gyp:gtk',
200 ], 201 ],
201 }], 202 }],
202 ['use_glib == 1', { 203 ['use_glib == 1', {
203 'dependencies': [ 204 'dependencies': [
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'nacl/common/nacl_types.h', 360 'nacl/common/nacl_types.h',
360 'nacl/common/pnacl_types.cc', 361 'nacl/common/pnacl_types.cc',
361 'nacl/common/pnacl_types.h', 362 'nacl/common/pnacl_types.h',
362 ], 363 ],
363 'include_dirs': [ 364 'include_dirs': [
364 '..', 365 '..',
365 ], 366 ],
366 }, 367 },
367 ] 368 ]
368 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698