summaryrefslogtreecommitdiff
path: root/chromium/components/web_cache/renderer/BUILD.gn
blob: 368bff45c67417bbf70011f85bdaca8ebeaad87a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

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

  deps = [
    "//base",
    "//components/web_cache/public/interfaces",
    "//content/public/child",
    "//content/public/common",
    "//content/public/renderer",
    "//services/service_manager/public/cpp",
    "//third_party/WebKit/public:blink",
  ]
}