1# Copyright 2016 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
5import("//third_party/blink/renderer/modules/modules.gni")
6
7blink_modules_sources("cache_storage") {
8  sources = [
9    "cache.cc",
10    "cache.h",
11    "cache_storage.cc",
12    "cache_storage.h",
13    "cache_storage_blob_client_list.cc",
14    "cache_storage_blob_client_list.h",
15    "cache_storage_error.cc",
16    "cache_storage_error.h",
17    "cache_storage_trace_utils.cc",
18    "cache_storage_trace_utils.h",
19    "cache_utils.cc",
20    "cache_utils.h",
21    "global_cache_storage.cc",
22    "global_cache_storage.h",
23    "inspector_cache_storage_agent.cc",
24    "inspector_cache_storage_agent.h",
25  ]
26
27  public_deps = [ "//third_party/blink/renderer/platform" ]
28}
29