| Index: chrome/BUILD.gn
|
| diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
|
| index a4044b8341f201c4ea18cdb061fb7bf3240b1ff5..893052ef10e370d0f24a984a1b9558896c58f355 100644
|
| --- a/chrome/BUILD.gn
|
| +++ b/chrome/BUILD.gn
|
| @@ -1221,10 +1221,11 @@ group("browser_dependencies") {
|
| # Note that the blink_headers target is OK, so we can't do a wildcard for
|
| # all blink targets.
|
| "//third_party/WebKit/public:blink",
|
| - # TODO(brettw) bug 581766: V8 should not be linked into the browser
|
| - # process, and then we can enable this. When testing whether you can
|
| - # enable this, run with a non-component build.
|
| - #"//v8/*",
|
| +
|
| + # V8 shouldn't be in the browser, however, one header only target
|
| + # containing the version is allowed, //v8:v8_version. Because of this, we
|
| + # can't disallow //v8:* here which we would otherwise want.
|
| + "//v8:v8",
|
| ]
|
| }
|
| }
|
|
|