chromium/components/facilitated_payments/content/renderer/BUILD.gn

# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("renderer") {
  sources = [
    "facilitated_payments_agent.cc",
    "facilitated_payments_agent.h",
  ]

  deps = [
    "//base",
    "//components/facilitated_payments/core/mojom:facilitated_payments_agent_mojom",
    "//components/facilitated_payments/core/util",
    "//content/public/renderer",
    "//third_party/blink/public:blink_headers",
    "//third_party/blink/public/common",
  ]
}

source_set("browser_tests") {
  testonly = true
  sources = [ "facilitated_payments_agent_browsertest.cc" ]

  deps = [
    ":renderer",
    "//content/test:test_support",
    "//testing/gtest",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "facilitated_payments_agent_unittest.cc" ]

  deps = [
    ":renderer",
    "//content/test:test_support",
    "//testing/gtest",
  ]
}