Chromium Code Reviews| Index: build/config/BUILD.gn |
| diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn |
| index 6a3133d9ecc6bcd02848a45b4a1803ce15627bf4..c29ea2f8a22da06f4337741899b781f0f50951dd 100644 |
| --- a/build/config/BUILD.gn |
| +++ b/build/config/BUILD.gn |
| @@ -408,6 +408,7 @@ config("executable_config") { |
| if (use_locally_built_instrumented_libraries) { |
| configs += [ "//third_party/instrumented_libraries:locally_built_ldflags" ] |
| } |
| + configs += [ "//build/config/sanitizers:executable_config" ] |
| } |
| # Shared library configs ------------------------------------------------------- |
| @@ -434,6 +435,7 @@ config("shared_library_config") { |
| if (use_locally_built_instrumented_libraries) { |
| configs += [ "//third_party/instrumented_libraries:locally_built_ldflags" ] |
| } |
| + configs += [ "//build/config/sanitizers:executable_config" ] |
|
Nico
2016/08/02 14:20:51
It seems very surprising to me that shared_library
Dirk Pranke
2016/08/02 17:19:03
Agreed; This patch was based on etienneb's patch,
etienneb
2016/08/02 22:50:26
I agree too.
This was a quick try to make the buil
|
| } |
| # Add this config to your target to enable precompiled headers. |