| 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 | 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", | 8 "pref_proxy_config_tracker.cc", |
| 9 "pref_proxy_config_tracker.h", | 9 "pref_proxy_config_tracker.h", |
| 10 "pref_proxy_config_tracker_impl.cc", | 10 "pref_proxy_config_tracker_impl.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "//base", | 26 "//base", |
| 27 "//base:prefs", | 27 "//base:prefs", |
| 28 "//net", | 28 "//net", |
| 29 "//url", | 29 "//url", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 source_set("unit_tests") { | 33 source_set("unit_tests") { |
| 34 testonly = true | 34 testonly = true |
| 35 sources = [ | 35 sources = [ |
| 36 "pref_proxy_config_tracker_impl_unittest.cc", |
| 36 "proxy_config_dictionary_unittest.cc", | 37 "proxy_config_dictionary_unittest.cc", |
| 37 "proxy_prefs_unittest.cc", | 38 "proxy_prefs_unittest.cc", |
| 38 ] | 39 ] |
| 39 deps = [ | 40 deps = [ |
| 40 ":proxy_config", | 41 ":proxy_config", |
| 42 "//testing/gmock", |
| 41 "//testing/gtest", | 43 "//testing/gtest", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| OLD | NEW |