blob: a173f60f8649b16d9e8a4a33b7c1460a798b6070 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include_rules = [
"+components/tracing",
# Required for Mojo IRT support.
"+mojo/nacl/mojo_irt.h",
# 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/untrusted/irt/irt.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",
]
|