| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # GYP version: components/proxy_config.gypi:proxy_config_component | 5 # GYP version: components/proxy_config.gypi:proxy_config |
| 6 component("proxy_config") { | 6 component("proxy_config") { |
| 7 sources = [ | 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", |
| 8 "proxy_config_dictionary.cc", | 12 "proxy_config_dictionary.cc", |
| 9 "proxy_config_dictionary.h", | 13 "proxy_config_dictionary.h", |
| 10 "proxy_config_export.h", | 14 "proxy_config_export.h", |
| 15 "proxy_config_pref_names.cc", |
| 16 "proxy_config_pref_names.h", |
| 11 "proxy_prefs.cc", | 17 "proxy_prefs.cc", |
| 12 "proxy_prefs.h", | 18 "proxy_prefs.h", |
| 13 ] | 19 ] |
| 14 | 20 |
| 21 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 22 |
| 15 defines = [ "PROXY_CONFIG_IMPLEMENTATION" ] | 23 defines = [ "PROXY_CONFIG_IMPLEMENTATION" ] |
| 16 | 24 |
| 17 deps = [ | 25 deps = [ |
| 18 "//base", | 26 "//base", |
| 27 "//base:prefs", |
| 19 "//net", | 28 "//net", |
| 29 "//url", |
| 20 ] | 30 ] |
| 21 } | 31 } |
| OLD | NEW |