blob: 8e4bc776b366f1eb2dabb3be4f40419485015d7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include_rules = [
"+components/tracing",
# We don't want the proxy to depend on the C++ layer, which is appropriate
# for plugins only.
"-ppapi/cpp",
# The untrusted build references the NaCl integrated runtime (IRT).
"+native_client/src/public",
"+native_client/src/shared/srpc/nacl_srpc.h",
"+native_client/src/untrusted/irt/irt.h",
"+native_client/src/untrusted/irt/irt_private.h",
# The IRT also needs to know the errno and sysconf enums.
"+native_client/src/trusted/service_runtime/include/sys/errno.h",
"+native_client/src/trusted/service_runtime/include/sys/unistd.h",
]
|