| # Copyright 2019 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/features.gni") |
| import("//printing/buildflags/buildflags.gni") |
| import("//testing/test.gni") |
| |
| assert(is_chromeos, "Non-ChromeOS builds must not depend on this") |
| assert(use_cups, "Non-CUPS builds must not depend on this") |
| |
| source_set("test_support") { |
| testonly = true |
| sources = [ |
| "libcups_test_suite.cc", |
| "libcups_test_suite.h", |
| "paths.cc", |
| "paths.h", |
| "run_all_unittests.cc", |
| ] |
| |
| deps = [ |
| "//base", |
| "//base/test:test_support", |
| "//mojo/core/embedder", |
| "//testing/gmock", |
| "//testing/gtest", |
| ] |
| } |