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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 966443002: Add DataReductionProxy IPC to determine if the Data Reduction Proxy was used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to head Created 5 years, 9 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/components_tests.gyp ('k') | components/data_reduction_proxy/OWNERS » ('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 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 15 matching lines...) Expand all
26 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug _ui_service.h', 26 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug _ui_service.h',
27 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin g_page.cc', 27 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin g_page.cc',
28 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin g_page.h', 28 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blockin g_page.h',
29 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.cc', 29 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.cc',
30 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.h', 30 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.h',
31 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.cc', 31 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.cc',
32 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.h', 32 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.h',
33 ], 33 ],
34 }, 34 },
35 { 35 {
36 # GN version: //components/data_reduction_proxy/content/common
37 'target_name': 'data_reduction_proxy_content_common',
38 'type': 'static_library',
39 'dependencies': [
40 '../content/content.gyp:content_common',
41 '../ipc/ipc.gyp:ipc',
42 ],
43 'include_dirs': [
44 '..',
45 ],
46 'sources': [
47 'data_reduction_proxy/content/common/data_reduction_proxy_messages.cc',
48 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h',
49 ],
50 },
51 {
52 # GN version: //components/data_reduction_proxy/content/browser
53 'target_name': 'data_reduction_proxy_content_browser',
54 'type': 'static_library',
55 'dependencies': [
56 '../content/content.gyp:content_common',
57 '../ipc/ipc.gyp:ipc',
58 'data_reduction_proxy_content_common',
59 ],
60 'include_dirs': [
61 '..',
62 ],
63 'sources': [
64 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filte r.cc',
65 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filte r.h',
66 ],
67 },
68 {
36 # GN version: //components/data_reduction_proxy/core/browser 69 # GN version: //components/data_reduction_proxy/core/browser
37 'target_name': 'data_reduction_proxy_core_browser', 70 'target_name': 'data_reduction_proxy_core_browser',
38 'type': 'static_library', 71 'type': 'static_library',
39 'conditions': [ 72 'conditions': [
40 ['OS != "android" and OS != "ios"', { 73 ['OS != "android" and OS != "ios"', {
41 'dependencies' : [ 74 'dependencies' : [
42 '../google_apis/google_apis.gyp:google_apis', 75 '../google_apis/google_apis.gyp:google_apis',
43 ] 76 ]
44 }], 77 }],
45 ], 78 ],
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 '-e', 'VERSION_FULL="<(version_full)"', 207 '-e', 'VERSION_FULL="<(version_full)"',
175 'data_reduction_proxy/core/common/version.h.in', 208 'data_reduction_proxy/core/common/version.h.in',
176 '<@(_outputs)', 209 '<@(_outputs)',
177 ], 210 ],
178 'includes': [ 211 'includes': [
179 '../build/util/version.gypi', 212 '../build/util/version.gypi',
180 ], 213 ],
181 }, 214 },
182 ], 215 ],
183 }, 216 },
184
185 ], 217 ],
186 } 218 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698