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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 893003002: Data Reduction Proxy class ownership updates and Settings cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
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 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 # GN Version: //components/data_reduction_proxy/content 9 # GN Version: //components/data_reduction_proxy/content
10 'target_name': 'data_reduction_proxy_content', 10 'target_name': 'data_reduction_proxy_content',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. cc', 74 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. cc',
75 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. h', 75 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. h',
76 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc', 76 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc',
77 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h', 77 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h',
78 'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs .cc', 78 'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs .cc',
79 'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs .h', 79 'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs .h',
80 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .cc', 80 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .cc',
81 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .h', 81 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .h',
82 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.cc', 82 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.cc',
83 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h', 83 'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h',
84 'data_reduction_proxy/core/browser/data_saver_service.cc',
85 'data_reduction_proxy/core/browser/data_saver_service.h',
84 ], 86 ],
85 }, 87 },
86 { 88 {
87 # GN version: //components/data_reduction_proxy/core/common 89 # GN version: //components/data_reduction_proxy/core/common
88 'target_name': 'data_reduction_proxy_core_common', 90 'target_name': 'data_reduction_proxy_core_common',
89 'type': 'static_library', 91 'type': 'static_library',
90 'dependencies': [ 92 'dependencies': [
91 '../base/base.gyp:base', 93 '../base/base.gyp:base',
92 '../url/url.gyp:url_lib', 94 '../url/url.gyp:url_lib',
93 ], 95 ],
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 '..', 129 '..',
128 ], 130 ],
129 'sources': [ 131 'sources': [
130 # Note: sources list duplicated in GN build. 132 # Note: sources list duplicated in GN build.
131 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.cc', 133 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.cc',
132 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.h', 134 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.h',
133 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator_tes t_utils.cc', 135 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator_tes t_utils.cc',
134 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator_tes t_utils.h', 136 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator_tes t_utils.h',
135 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.cc', 137 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.cc',
136 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.h', 138 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.h',
139 'data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc',
140 'data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h',
137 'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_util s.cc', 141 'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_util s.cc',
138 'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_util s.h', 142 'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_util s.h',
139 'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils .cc', 143 'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils .cc',
140 'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils .h', 144 'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils .h',
141 ], 145 ],
142 }, 146 },
143 { 147 {
144 'target_name': 'data_reduction_proxy_version_header', 148 'target_name': 'data_reduction_proxy_version_header',
145 'type': 'none', 149 'type': 'none',
146 'direct_dependent_settings': { 150 'direct_dependent_settings': {
(...skipping 22 matching lines...) Expand all
169 'includes': [ 173 'includes': [
170 '../build/util/version.gypi', 174 '../build/util/version.gypi',
171 ], 175 ],
172 }, 176 },
173 ], 177 ],
174 }, 178 },
175 179
176 ], 180 ],
177 } 181 }
178 182
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698