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

source_set("url_loading") {
  defines = [ "IS_ISOLATED_WEB_APPS_IMPL" ]
  visibility = [ "//components/webapps/isolated_web_apps/*" ]
  sources = [
    "url_loader.cc",
    "url_loader.h",
    "url_loader_factory.cc",
    "url_loader_factory.h",
    "utils.cc",
    "utils.h",
  ]

  deps = [
    "//components/keyed_service/content",
    "//components/keyed_service/core",
    "//components/webapps/isolated_web_apps:iwa_client",
    "//components/webapps/isolated_web_apps:scheme",
    "//content/public/browser",
    "//content/public/common",
    "//mojo/public/cpp/system",
    "//third_party/blink/public/common",
  ]

  public_deps = [
    "//base",
    "//components/web_package",
    "//components/webapps/isolated_web_apps/public",
    "//components/webapps/isolated_web_apps/reading",
    "//content/public/browser",
    "//mojo/public/cpp/bindings",
    "//net",
    "//services/network/public/mojom",
    "//url",
  ]
}
