Vectorize website settings icons in omnibox
[chromium-blink-merge.git] / components / error_page / renderer / BUILD.gn
blobd564e4d5735d01c106b4e9b477f67c94bfeca914
1 # Copyright 2014 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.
5 source_set("renderer") {
6   sources = [
7     "net_error_helper_core.cc",
8     "net_error_helper_core.h",
9   ]
11   deps = [
12     "//base",
13     "//components/error_page/common",
14     "//components/strings",
15     "//components/url_formatter",
16     "//content/public/common",
17     "//net",
18     "//third_party/WebKit/public:blink",
19     "//ui/base",
20     "//url",
21   ]
24 source_set("unit_tests") {
25   testonly = true
26   sources = [
27     "net_error_helper_core_unittest.cc",
28   ]
30   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
32   deps = [
33     ":renderer",
34     "//testing/gtest",
35   ]