Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 # Allow .cc files to know if they're being compiled as part | 184 # Allow .cc files to know if they're being compiled as part |
| 185 # of nacl_helper. | 185 # of nacl_helper. |
| 186 'IN_NACL_HELPER=1', | 186 'IN_NACL_HELPER=1', |
| 187 ], | 187 ], |
| 188 'sources': [ | 188 'sources': [ |
| 189 'nacl/loader/nacl_helper_linux.cc', | 189 'nacl/loader/nacl_helper_linux.cc', |
| 190 'nacl/loader/nacl_helper_linux.h', | 190 'nacl/loader/nacl_helper_linux.h', |
| 191 'nacl/loader/nacl_sandbox_linux.cc', | 191 'nacl/loader/nacl_sandbox_linux.cc', |
| 192 'nacl/loader/nonsfi/elf_loader.cc', | 192 'nacl/loader/nonsfi/elf_loader.cc', |
| 193 'nacl/loader/nonsfi/elf_loader.h', | 193 'nacl/loader/nonsfi/elf_loader.h', |
| 194 'nacl/loader/nonsfi/irt/irt_basic.cc', | |
|
Mark Seaborn
2014/01/07 09:45:06
Could you put these under nonsfi/ without creating
hidehiko
2014/01/07 11:52:29
Done.
| |
| 195 'nacl/loader/nonsfi/irt/irt_interfaces.cc', | |
| 196 'nacl/loader/nonsfi/irt/irt_interfaces.h', | |
| 194 'nacl/loader/nonsfi/nonsfi_main.cc', | 197 'nacl/loader/nonsfi/nonsfi_main.cc', |
| 195 'nacl/loader/nonsfi/nonsfi_main.h', | 198 'nacl/loader/nonsfi/nonsfi_main.h', |
| 196 '../base/posix/unix_domain_socket_linux.cc', | 199 '../base/posix/unix_domain_socket_linux.cc', |
| 197 '../content/common/child_process_sandbox_support_impl_shm_linux. cc', | 200 '../content/common/child_process_sandbox_support_impl_shm_linux. cc', |
| 198 '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.c c', | 201 '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.c c', |
| 199 '../content/common/sandbox_linux/sandbox_init_linux.cc', | 202 '../content/common/sandbox_linux/sandbox_init_linux.cc', |
| 200 '../content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc', | 203 '../content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc', |
| 201 '../content/public/common/content_switches.cc', | 204 '../content/public/common/content_switches.cc', |
| 202 ], | 205 ], |
| 203 'conditions': [ | 206 'conditions': [ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 374 'nacl/common/nacl_types.h', | 377 'nacl/common/nacl_types.h', |
| 375 'nacl/common/pnacl_types.cc', | 378 'nacl/common/pnacl_types.cc', |
| 376 'nacl/common/pnacl_types.h', | 379 'nacl/common/pnacl_types.h', |
| 377 ], | 380 ], |
| 378 'include_dirs': [ | 381 'include_dirs': [ |
| 379 '..', | 382 '..', |
| 380 ], | 383 ], |
| 381 }, | 384 }, |
| 382 ] | 385 ] |
| 383 } | 386 } |
| OLD | NEW |