| Index: chrome/common/BUILD.gn
|
| diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
|
| index bff72ad48349ffa5692883d4267712d8b010d93b..81f3ba12e11570918b888425429d5bdc2921dfb9 100644
|
| --- a/chrome/common/BUILD.gn
|
| +++ b/chrome/common/BUILD.gn
|
| @@ -51,6 +51,9 @@ buildflag_header("features") {
|
| }
|
|
|
| # GYP version: chrome/chrome_common.gypi:common
|
| +#
|
| +# Use a static library here because many test binaries depend on this but don't
|
| +# require many files from it. This makes linking more efficient.
|
| static_library("common") {
|
| sources = rebase_path(gypi_values.chrome_common_sources, ".", "//chrome")
|
| defines = []
|
| @@ -379,7 +382,9 @@ if (is_win) {
|
| }
|
| }
|
|
|
| -source_set("test_support") {
|
| +# Use a static library here because many test binaries depend on this but don't
|
| +# require many files from it. This makes linking more efficient.
|
| +static_library("test_support") {
|
| testonly = true
|
| visibility = [ "//chrome/test:test_support" ]
|
|
|
|
|