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

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: test fix 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 }], 127 }],
126 ['OS!="ios"', { 128 ['OS!="ios"', {
127 'targets' : [ 129 'targets' : [
128 { 130 {
129 # GN Version: //components/data_reduction_proxy/content 131 # GN Version: //components/data_reduction_proxy/content
130 'target_name': 'data_reduction_proxy_content', 132 'target_name': 'data_reduction_proxy_content',
131 'type': 'static_library', 133 'type': 'static_library',
132 'dependencies': [ 134 'dependencies': [
133 '../base/base.gyp:base', 135 '../base/base.gyp:base',
134 '../content/content.gyp:content_browser', 136 '../content/content.gyp:content_browser',
135 '../skia/skia.gyp:skia',
136 '../ui/base/ui_base.gyp:ui_base', 137 '../ui/base/ui_base.gyp:ui_base',
137 'components_resources.gyp:components_resources', 138 'components_resources.gyp:components_resources',
138 'components_strings.gyp:components_strings', 139 'components_strings.gyp:components_strings',
139 ], 140 ],
140 'include_dirs': [ 141 'include_dirs': [
141 '..', 142 '..',
142 ], 143 ],
143 'sources': [ 144 'sources': [
144 # Note: sources list duplicated in GN build. 145 # Note: sources list duplicated in GN build.
145 'data_reduction_proxy/content/browser/content_data_reduction_proxy_d ebug_ui_service.cc', 146 'data_reduction_proxy/content/browser/content_data_reduction_proxy_d ebug_ui_service.cc',
(...skipping 22 matching lines...) Expand all
168 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h ', 169 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h ',
169 ], 170 ],
170 }, 171 },
171 { 172 {
172 # GN version: //components/data_reduction_proxy/content/browser 173 # GN version: //components/data_reduction_proxy/content/browser
173 'target_name': 'data_reduction_proxy_content_browser', 174 'target_name': 'data_reduction_proxy_content_browser',
174 'type': 'static_library', 175 'type': 'static_library',
175 'dependencies': [ 176 'dependencies': [
176 '../content/content.gyp:content_common', 177 '../content/content.gyp:content_common',
177 '../ipc/ipc.gyp:ipc', 178 '../ipc/ipc.gyp:ipc',
179 '../skia/skia.gyp:skia',
178 'data_reduction_proxy_content_common', 180 'data_reduction_proxy_content_common',
179 ], 181 ],
180 'include_dirs': [ 182 'include_dirs': [
181 '..', 183 '..',
182 ], 184 ],
183 'sources': [ 185 'sources': [
186 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc',
187 'data_reduction_proxy/content/browser/content_lofi_ui_service.h',
184 'data_reduction_proxy/content/browser/content_lofi_decider.cc', 188 'data_reduction_proxy/content/browser/content_lofi_decider.cc',
185 'data_reduction_proxy/content/browser/content_lofi_decider.h', 189 'data_reduction_proxy/content/browser/content_lofi_decider.h',
186 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.cc', 190 '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', 191 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.h',
188 ], 192 ],
189 }, 193 },
190 ], 194 ],
191 }], 195 }],
192 ], 196 ],
193 'targets': [ 197 'targets': [
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 '<@(_outputs)', 329 '<@(_outputs)',
326 ], 330 ],
327 'includes': [ 331 'includes': [
328 '../build/util/version.gypi', 332 '../build/util/version.gypi',
329 ], 333 ],
330 }, 334 },
331 ], 335 ],
332 }, 336 },
333 ], 337 ],
334 } 338 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698