| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "content/common/sandbox_linux/bpf_cros_arm_gpu_policy_linux.h" | 5 #include "content/common/sandbox_linux/bpf_cros_arm_gpu_policy_linux.h" |
| 6 | 6 |
| 7 #include <dlfcn.h> | 7 #include <dlfcn.h> |
| 8 #include <errno.h> | 8 #include <errno.h> |
| 9 #include <fcntl.h> | 9 #include <fcntl.h> |
| 10 #include <sys/socket.h> | 10 #include <sys/socket.h> |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 // Preload the Mali library. | 216 // Preload the Mali library. |
| 217 dlopen("/usr/lib/libmali.so", dlopen_flag); | 217 dlopen("/usr/lib/libmali.so", dlopen_flag); |
| 218 | 218 |
| 219 // Preload the Tegra libraries. | 219 // Preload the Tegra libraries. |
| 220 dlopen("/usr/lib/libnvrm.so", dlopen_flag); | 220 dlopen("/usr/lib/libnvrm.so", dlopen_flag); |
| 221 dlopen("/usr/lib/libnvrm_graphics.so", dlopen_flag); | 221 dlopen("/usr/lib/libnvrm_graphics.so", dlopen_flag); |
| 222 dlopen("/usr/lib/libnvidia-glsi.so", dlopen_flag); | 222 dlopen("/usr/lib/libnvidia-glsi.so", dlopen_flag); |
| 223 dlopen("/usr/lib/libnvidia-rmapi-tegra.so", dlopen_flag); | 223 dlopen("/usr/lib/libnvidia-rmapi-tegra.so", dlopen_flag); |
| 224 dlopen("/usr/lib/libnvidia-eglcore.so", dlopen_flag); | 224 dlopen("/usr/lib/libnvidia-eglcore.so", dlopen_flag); |
| 225 // TODO(davidung): remove these libraries before nyan launch. | 225 // TODO(davidung): remove these libraries before nyan launch. |
| 226 dlopen("/usr/lib/libtegrav4l2.so", dlopen_flag); |
| 227 errno = 0; |
| 226 | 228 |
| 227 return true; | 229 return true; |
| 228 } | 230 } |
| 229 | 231 |
| 230 } // namespace content | 232 } // namespace content |
| OLD | NEW |