| Index: blimp/BUILD.gn
|
| diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn
|
| index 04b7a5b50d49786b4fbcc0085f40c202c2bf6c3e..42e29b0f89ac6d7cc4efd50a8f256a76cf71564d 100644
|
| --- a/blimp/BUILD.gn
|
| +++ b/blimp/BUILD.gn
|
| @@ -2,9 +2,18 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +# Metatarget for all of Blimp's feature code.
|
| group("blimp") {
|
| deps = [
|
| "//blimp/client:blimp_client",
|
| "//blimp/common:blimp_common",
|
| ]
|
| }
|
| +
|
| +# Metatarget for all of Blimp's unit tests.
|
| +group("blimp_tests") {
|
| + testonly = true
|
| + deps = [
|
| + "common:blimp_common_unit_tests",
|
| + ]
|
| +}
|
|
|