BUILD.gn 468 B

123456789101112131415161718192021
  1. # Copyright 2017 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. source_set("test_support") {
  5. testonly = true
  6. sources = [
  7. "mock_tracker.cc",
  8. "mock_tracker.h",
  9. "test_tracker.cc",
  10. "test_tracker.h",
  11. ]
  12. deps = [
  13. "//base",
  14. "//components/feature_engagement/internal",
  15. "//components/feature_engagement/public",
  16. "//testing/gmock",
  17. ]
  18. }