Vectorize website settings icons in omnibox
[chromium-blink-merge.git] / components / proxy_config / BUILD.gn
blob7a04e585a82160eb68d02cf98de757908a4e83ec
1 # Copyright 2015 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 # GYP version: components/proxy_config.gypi:proxy_config
6 component("proxy_config") {
7   sources = [
8     "pref_proxy_config_tracker.cc",
9     "pref_proxy_config_tracker.h",
10     "pref_proxy_config_tracker_impl.cc",
11     "pref_proxy_config_tracker_impl.h",
12     "proxy_config_dictionary.cc",
13     "proxy_config_dictionary.h",
14     "proxy_config_export.h",
15     "proxy_config_pref_names.cc",
16     "proxy_config_pref_names.h",
17     "proxy_prefs.cc",
18     "proxy_prefs.h",
19   ]
21   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
23   defines = [ "PROXY_CONFIG_IMPLEMENTATION" ]
25   deps = [
26     "//base",
27     "//base:prefs",
28     "//net",
29     "//url",
30   ]
33 source_set("unit_tests") {
34   testonly = true
35   sources = [
36     "proxy_config_dictionary_unittest.cc",
37     "proxy_prefs_unittest.cc",
38   ]
39   deps = [
40     ":proxy_config",
41     "//testing/gtest",
42   ]