OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 static_library("browser") { | 5 static_library("browser") { |
6 sources = [ | 6 sources = [ |
7 "data_reduction_proxy_bypass_protocol.cc", | 7 "data_reduction_proxy_bypass_protocol.cc", |
8 "data_reduction_proxy_bypass_protocol.h", | 8 "data_reduction_proxy_bypass_protocol.h", |
9 "data_reduction_proxy_config.cc", | 9 "data_reduction_proxy_config.cc", |
10 "data_reduction_proxy_config.h", | 10 "data_reduction_proxy_config.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "data_reduction_proxy_config_test_utils.cc", | 57 "data_reduction_proxy_config_test_utils.cc", |
58 "data_reduction_proxy_config_test_utils.h", | 58 "data_reduction_proxy_config_test_utils.h", |
59 "data_reduction_proxy_configurator_test_utils.cc", | 59 "data_reduction_proxy_configurator_test_utils.cc", |
60 "data_reduction_proxy_configurator_test_utils.h", | 60 "data_reduction_proxy_configurator_test_utils.h", |
61 "data_reduction_proxy_settings_test_utils.cc", | 61 "data_reduction_proxy_settings_test_utils.cc", |
62 "data_reduction_proxy_settings_test_utils.h", | 62 "data_reduction_proxy_settings_test_utils.h", |
63 "data_reduction_proxy_test_utils.cc", | 63 "data_reduction_proxy_test_utils.cc", |
64 "data_reduction_proxy_test_utils.h", | 64 "data_reduction_proxy_test_utils.h", |
65 ] | 65 ] |
66 | 66 |
| 67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 68 |
67 public_deps = [ | 69 public_deps = [ |
68 ":browser", | 70 ":browser", |
69 ] | 71 ] |
70 deps = [ | 72 deps = [ |
71 "//base", | 73 "//base", |
72 "//base:prefs_test_support", | 74 "//base:prefs_test_support", |
73 "//components/data_reduction_proxy/core/common", | 75 "//components/data_reduction_proxy/core/common", |
74 "//components/data_reduction_proxy/core/common:test_support", | 76 "//components/data_reduction_proxy/core/common:test_support", |
75 "//net", | 77 "//net", |
76 "//net:test_support", | 78 "//net:test_support", |
(...skipping 24 matching lines...) Expand all Loading... |
101 ":test_support", | 103 ":test_support", |
102 "//base", | 104 "//base", |
103 "//base:prefs_test_support", | 105 "//base:prefs_test_support", |
104 "//base/test:test_support", | 106 "//base/test:test_support", |
105 "//components/data_reduction_proxy/core/common:test_support", | 107 "//components/data_reduction_proxy/core/common:test_support", |
106 "//net:test_support", | 108 "//net:test_support", |
107 "//testing/gmock", | 109 "//testing/gmock", |
108 "//testing/gtest", | 110 "//testing/gtest", |
109 ] | 111 ] |
110 } | 112 } |
OLD | NEW |