| Index: win8/BUILD.gn
|
| diff --git a/win8/BUILD.gn b/win8/BUILD.gn
|
| index 84d7972f62e095703610840911fd6e4d9bd22970..ba2033c037967f4929aeb1bbbd778925b2e77abe 100644
|
| --- a/win8/BUILD.gn
|
| +++ b/win8/BUILD.gn
|
| @@ -51,21 +51,25 @@ source_set("test_registrar_constants") {
|
| ]
|
| }
|
|
|
| -executable("test_registrar") {
|
| - deps = [
|
| - "//base",
|
| +# TODO(brettw) enable on Windows. This should link but is disabled due to bot
|
| +# capacity issues.
|
| +if (!is_win) {
|
| + executable("test_registrar") {
|
| + deps = [
|
| + "//base",
|
|
|
| - # Chrome is the default viewer process currently used by the tests.
|
| - # TODO(robertshield): Investigate building a standalone metro viewer
|
| - # process.
|
| - "//chrome",
|
| - ":test_registrar_constants",
|
| - ]
|
| - sources = [
|
| - "test/test_registrar.cc",
|
| - "test/test_registrar.rc",
|
| - "test/test_registrar.rgs",
|
| - "test/test_registrar_resource.h",
|
| - ]
|
| - configs += [ "//build/config/win:windowed" ]
|
| + # Chrome is the default viewer process currently used by the tests.
|
| + # TODO(robertshield): Investigate building a standalone metro viewer
|
| + # process.
|
| + "//chrome",
|
| + ":test_registrar_constants",
|
| + ]
|
| + sources = [
|
| + "test/test_registrar.cc",
|
| + "test/test_registrar.rc",
|
| + "test/test_registrar.rgs",
|
| + "test/test_registrar_resource.h",
|
| + ]
|
| + configs += [ "//build/config/win:windowed" ]
|
| + }
|
| }
|
|
|