From 971dd2a4fadac9cdab174c523c22df79efd63aa5 Mon Sep 17 00:00:00 2001
From: Andreas Schuh You can then add //external:gflags
to the deps
section of a cc_binary
-or cc_library
rule, and #include "gflags/gflags.h"
to include it in your source code.cc_library
rule, and #include "gflags/gflags.h"
to include it in your source code.
+This use the shared gflags library with multi-threading enabled. In order to use the single-threaded shared
+gflags library, use the external dependency //external:gflags_nothreads
instead.
For example, see the following BUILD
rule of the gflags/example project: