| Index: apps/BUILD.gn
|
| diff --git a/apps/BUILD.gn b/apps/BUILD.gn
|
| index 7acd49516d4a208d013b23408ffbc92b477b6553..38a58b05e35d406b9a29fe0b363153de13ca9125 100644
|
| --- a/apps/BUILD.gn
|
| +++ b/apps/BUILD.gn
|
| @@ -71,3 +71,15 @@ static_library("apps") {
|
| # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
| configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
| }
|
| +
|
| +static_library("test_support") {
|
| + testonly = true
|
| + sources = [
|
| + "test/app_window_waiter.cc",
|
| + "test/app_window_waiter.h",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//content/public/browser",
|
| + ]
|
| +}
|
|
|