chromium/third_party/blink/renderer/modules/shared_storage/BUILD.gn

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

import("//third_party/blink/renderer/modules/modules.gni")

blink_modules_sources("shared_storage") {
  visibility = [
    "//third_party/blink/renderer/modules",
    "//third_party/blink/renderer/modules/exported",
  ]

  sources = [
    "private_aggregation.cc",
    "private_aggregation.h",
    "shared_storage.cc",
    "shared_storage.h",
    "shared_storage_blink_mojom_traits.cc",
    "shared_storage_blink_mojom_traits.h",
    "shared_storage_operation_definition.cc",
    "shared_storage_operation_definition.h",
    "shared_storage_window_supplement.cc",
    "shared_storage_window_supplement.h",
    "shared_storage_worklet.cc",
    "shared_storage_worklet.h",
    "shared_storage_worklet_global_scope.cc",
    "shared_storage_worklet_global_scope.h",
    "shared_storage_worklet_messaging_proxy.cc",
    "shared_storage_worklet_messaging_proxy.h",
    "shared_storage_worklet_thread.cc",
    "shared_storage_worklet_thread.h",
    "util.cc",
    "util.h",
    "window_shared_storage.cc",
    "window_shared_storage.h",
  ]

  deps = [
    "//components/aggregation_service",
    "//services/network/public/cpp",
    "//third_party/blink/renderer/modules/crypto:crypto",
  ]

  public_deps = [ "//url" ]
}