Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: components/data_reduction_proxy/core/browser/BUILD.gn

Issue 1652573002: Update GN build files for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@presf_move
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/cronet/android/BUILD.gn ('k') | components/dom_distiller/core/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 browser_sources = [ 5 browser_sources = [
6 "data_reduction_proxy_bypass_protocol.cc", 6 "data_reduction_proxy_bypass_protocol.cc",
7 "data_reduction_proxy_bypass_protocol.h", 7 "data_reduction_proxy_bypass_protocol.h",
8 "data_reduction_proxy_bypass_stats.cc", 8 "data_reduction_proxy_bypass_stats.cc",
9 "data_reduction_proxy_bypass_stats.h", 9 "data_reduction_proxy_bypass_stats.h",
10 "data_reduction_proxy_compression_stats.cc", 10 "data_reduction_proxy_compression_stats.cc",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "db_data_owner.cc", 50 "db_data_owner.cc",
51 "db_data_owner.h", 51 "db_data_owner.h",
52 ] 52 ]
53 53
54 if (is_android) { 54 if (is_android) {
55 source_set("browser_small") { 55 source_set("browser_small") {
56 sources = browser_sources 56 sources = browser_sources
57 57
58 deps = [ 58 deps = [
59 "//base", 59 "//base",
60 "//base:prefs",
61 "//components/data_reduction_proxy/core/common:common_small", 60 "//components/data_reduction_proxy/core/common:common_small",
62 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 61 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
63 "//components/pref_registry", 62 "//components/pref_registry",
63 "//components/prefs",
64 "//components/variations", 64 "//components/variations",
65 "//crypto", 65 "//crypto",
66 "//google_apis:google_apis_small", 66 "//google_apis:google_apis_small",
67 "//net:net_small", 67 "//net:net_small",
68 "//url:url_lib_use_icu_alternatives_on_android", 68 "//url:url_lib_use_icu_alternatives_on_android",
69 ] 69 ]
70 } 70 }
71 } 71 }
72 72
73 source_set("browser") { 73 source_set("browser") {
74 sources = browser_sources 74 sources = browser_sources
75 sources += [ 75 sources += [
76 "data_store_impl.cc", 76 "data_store_impl.cc",
77 "data_store_impl.h", 77 "data_store_impl.h",
78 ] 78 ]
79 79
80 deps = [ 80 deps = [
81 "//base", 81 "//base",
82 "//base:prefs",
83 "//components/data_reduction_proxy/core/common", 82 "//components/data_reduction_proxy/core/common",
84 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 83 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
85 "//components/pref_registry", 84 "//components/pref_registry",
85 "//components/prefs",
86 "//components/variations", 86 "//components/variations",
87 "//crypto", 87 "//crypto",
88 "//google_apis", 88 "//google_apis",
89 "//net", 89 "//net",
90 "//third_party/leveldatabase", 90 "//third_party/leveldatabase",
91 "//url", 91 "//url",
92 ] 92 ]
93 93
94 defines = [ "USE_GOOGLE_API_KEYS" ] 94 defines = [ "USE_GOOGLE_API_KEYS" ]
95 if (!is_ios) { 95 if (!is_ios) {
(...skipping 14 matching lines...) Expand all
110 "data_reduction_proxy_test_utils.h", 110 "data_reduction_proxy_test_utils.h",
111 ] 111 ]
112 112
113 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 113 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
114 114
115 public_deps = [ 115 public_deps = [
116 ":browser", 116 ":browser",
117 ] 117 ]
118 deps = [ 118 deps = [
119 "//base", 119 "//base",
120 "//base:prefs_test_support",
121 "//components/data_reduction_proxy/core/common", 120 "//components/data_reduction_proxy/core/common",
122 "//components/data_reduction_proxy/core/common:test_support", 121 "//components/data_reduction_proxy/core/common:test_support",
122 "//components/prefs:test_support",
123 "//net", 123 "//net",
124 "//net:test_support", 124 "//net:test_support",
125 "//testing/gmock", 125 "//testing/gmock",
126 "//testing/gtest", 126 "//testing/gtest",
127 ] 127 ]
128 } 128 }
129 129
130 source_set("unit_tests") { 130 source_set("unit_tests") {
131 testonly = true 131 testonly = true
132 sources = [ 132 sources = [
(...skipping 16 matching lines...) Expand all
149 "data_reduction_proxy_tamper_detection_unittest.cc", 149 "data_reduction_proxy_tamper_detection_unittest.cc",
150 "data_usage_store_unittest.cc", 150 "data_usage_store_unittest.cc",
151 ] 151 ]
152 152
153 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 153 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
154 154
155 deps = [ 155 deps = [
156 ":browser", 156 ":browser",
157 ":test_support", 157 ":test_support",
158 "//base", 158 "//base",
159 "//base:prefs_test_support",
160 "//base/test:test_support", 159 "//base/test:test_support",
161 "//components/data_reduction_proxy/core/common:test_support", 160 "//components/data_reduction_proxy/core/common:test_support",
162 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 161 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
162 "//components/prefs:test_support",
163 "//components/variations", 163 "//components/variations",
164 "//net:test_support", 164 "//net:test_support",
165 "//testing/gmock", 165 "//testing/gmock",
166 "//testing/gtest", 166 "//testing/gtest",
167 ] 167 ]
168 } 168 }
OLDNEW
« no previous file with comments | « components/cronet/android/BUILD.gn ('k') | components/dom_distiller/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698