Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: src/IceBuildDefs.h

Issue 1494753003: cleanup main (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: changes suggested by stichnot Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698