BUILD.gn 373 B

123456789101112131415161718
  1. # Copyright 2021 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. static_library("data_driven_testing") {
  5. testonly = true
  6. sources = [
  7. "data_driven_test.cc",
  8. "data_driven_test.h",
  9. ]
  10. deps = [
  11. "//base",
  12. "//testing/gtest",
  13. "//third_party/re2",
  14. ]
  15. }