Chromium Code Reviews| Index: src/IceBuildDefs.h |
| diff --git a/src/IceBuildDefs.h b/src/IceBuildDefs.h |
| index 6714297aa7dd62e47e8201615f61f3d5023dcb91..a6243abc8ad32311461e99aa37c803aded175099 100644 |
| --- a/src/IceBuildDefs.h |
| +++ b/src/IceBuildDefs.h |
| @@ -35,6 +35,15 @@ constexpr bool asserts() { |
| #endif // !NDEBUG |
| } |
| +// PNACL_BROWSER_TRANSLATOR |
|
Jim Stichnoth
2015/12/07 17:37:13
Expand this comment like above and below. E.g.:
rkotlerimgtec
2015/12/07 18:32:07
Done.
|
| +constexpr bool browser() { |
| +#if PNACL_BROWSER_TRANSLATOR |
| + return true; |
| +#else // !PNACL_BROWSER_TRANSLATOR |
| + return false; |
| +#endif // !PNACL_BROWSER_TRANSLATOR |
| +} |
| + |
| // ALLOW_EXTRA_VALIDATION can be undefined, or defined to something non-zero. |
| constexpr bool extraValidation() { |
| #if ALLOW_EXTRA_VALIDATION |