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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 1558553002: Lo-Fi snackbar should only be shown for the first q=low response of a page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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 'variables' : 7 'variables' :
8 { 8 {
9 'data_reduction_proxy_core_browser_sources' : [ 9 'data_reduction_proxy_core_browser_sources' : [
10 # Note: sources list duplicated in GN build. 10 # Note: sources list duplicated in GN build.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc', 74 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc',
75 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h', 75 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h',
76 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc', 76 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc',
77 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h', 77 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h',
78 'data_reduction_proxy/core/common/data_reduction_proxy_params.cc', 78 'data_reduction_proxy/core/common/data_reduction_proxy_params.cc',
79 'data_reduction_proxy/core/common/data_reduction_proxy_params.h', 79 'data_reduction_proxy/core/common/data_reduction_proxy_params.h',
80 'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc', 80 'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc',
81 'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.h', 81 'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.h',
82 'data_reduction_proxy/core/common/data_reduction_proxy_switches.cc', 82 'data_reduction_proxy/core/common/data_reduction_proxy_switches.cc',
83 'data_reduction_proxy/core/common/data_reduction_proxy_switches.h', 83 'data_reduction_proxy/core/common/data_reduction_proxy_switches.h',
84 'data_reduction_proxy/core/common/lofi_decider.h',
85 'data_reduction_proxy/core/common/lofi_ui_service.h',
84 ], 86 ],
85 }, 87 },
86 'conditions': [ 88 'conditions': [
87 # Small versions of libraries for Cronet. 89 # Small versions of libraries for Cronet.
88 ['OS=="android"', { 90 ['OS=="android"', {
89 'targets' : [ 91 'targets' : [
90 { 92 {
91 # GN version: //components/data_reduction_proxy/core/browser:browser_ small 93 # GN version: //components/data_reduction_proxy/core/browser:browser_ small
92 'target_name': 'data_reduction_proxy_core_browser_small', 94 'target_name': 'data_reduction_proxy_core_browser_small',
93 'type': 'static_library', 95 'type': 'static_library',
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h ', 170 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h ',
169 ], 171 ],
170 }, 172 },
171 { 173 {
172 # GN version: //components/data_reduction_proxy/content/browser 174 # GN version: //components/data_reduction_proxy/content/browser
173 'target_name': 'data_reduction_proxy_content_browser', 175 'target_name': 'data_reduction_proxy_content_browser',
174 'type': 'static_library', 176 'type': 'static_library',
175 'dependencies': [ 177 'dependencies': [
176 '../content/content.gyp:content_common', 178 '../content/content.gyp:content_common',
177 '../ipc/ipc.gyp:ipc', 179 '../ipc/ipc.gyp:ipc',
180 '../skia/skia.gyp:skia',
tbansal1 2016/01/05 03:10:59 what is this for?
megjablon 2016/01/05 20:13:02 Removed. This was for a content dependency that is
178 'data_reduction_proxy_content_common', 181 'data_reduction_proxy_content_common',
179 ], 182 ],
180 'include_dirs': [ 183 'include_dirs': [
181 '..', 184 '..',
182 ], 185 ],
183 'sources': [ 186 'sources': [
187 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc',
188 'data_reduction_proxy/content/browser/content_lofi_ui_service.h',
184 'data_reduction_proxy/content/browser/content_lofi_decider.cc', 189 'data_reduction_proxy/content/browser/content_lofi_decider.cc',
185 'data_reduction_proxy/content/browser/content_lofi_decider.h', 190 'data_reduction_proxy/content/browser/content_lofi_decider.h',
186 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.cc', 191 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.cc',
187 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.h', 192 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.h',
188 ], 193 ],
189 }, 194 },
190 ], 195 ],
191 }], 196 }],
192 ], 197 ],
193 'targets': [ 198 'targets': [
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 '<@(_outputs)', 330 '<@(_outputs)',
326 ], 331 ],
327 'includes': [ 332 'includes': [
328 '../build/util/version.gypi', 333 '../build/util/version.gypi',
329 ], 334 ],
330 }, 335 },
331 ], 336 ],
332 }, 337 },
333 ], 338 ],
334 } 339 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698