blob: e47fd699b3c4f7d840802d4e5f517b8af92c89e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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 = [
"net_error_helper_core.cc",
"net_error_helper_core.h",
]
deps = [
"//base",
"//components/error_page/common",
"//components/strings",
"//content/public/common",
"//net",
"//third_party/WebKit/public:blink",
"//ui/base",
"//url",
]
}
|