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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 2063683002: Migrate components/data_reduction_proxy to Mojo interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Eliminate usage of RPH observer Created 4 years, 4 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ], 112 ],
113 }, 113 },
114 ], 114 ],
115 }], 115 }],
116 ['OS!="ios"', { 116 ['OS!="ios"', {
117 'targets' : [ 117 'targets' : [
118 { 118 {
119 # GN version: //components/data_reduction_proxy/content/common 119 # GN version: //components/data_reduction_proxy/content/common
120 'target_name': 'data_reduction_proxy_content_common', 120 'target_name': 'data_reduction_proxy_content_common',
121 'type': 'static_library', 121 'type': 'static_library',
122 'sources': [
123 'data_reduction_proxy/content/common/data_reduction_proxy.mojom',
124 ],
122 'dependencies': [ 125 'dependencies': [
123 '../content/content.gyp:content_common', 126 '../net/net.gyp:net_base_mojo_bindings',
124 '../ipc/ipc.gyp:ipc',
125 ], 127 ],
126 'include_dirs': [ 128 'export_dependent_settings': [
127 '..', 129 '../net/net.gyp:net_base_mojo_bindings',
128 ], 130 ],
129 'sources': [ 131 'variables': {
130 'data_reduction_proxy/content/common/data_reduction_proxy_messages.c c', 132 'mojom_typemaps': [
131 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h ', 133 '<(DEPTH)/net/base/mojo/net_base.typemap',
132 ], 134 ],
135 },
136 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
133 }, 137 },
134 { 138 {
135 # GN version: //components/data_reduction_proxy/content/browser 139 # GN version: //components/data_reduction_proxy/content/browser
136 'target_name': 'data_reduction_proxy_content_browser', 140 'target_name': 'data_reduction_proxy_content_browser',
137 'type': 'static_library', 141 'type': 'static_library',
138 'dependencies': [ 142 'dependencies': [
139 '../content/content.gyp:content_common', 143 '../content/content.gyp:content_common',
140 '../ipc/ipc.gyp:ipc',
141 '../skia/skia.gyp:skia', 144 '../skia/skia.gyp:skia',
142 'data_reduction_proxy_content_common', 145 'data_reduction_proxy_content_common',
143 ], 146 ],
144 'include_dirs': [ 147 'include_dirs': [
145 '..', 148 '..',
146 ], 149 ],
147 'sources': [ 150 'sources': [
148 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc', 151 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc',
149 'data_reduction_proxy/content/browser/content_lofi_ui_service.h', 152 'data_reduction_proxy/content/browser/content_lofi_ui_service.h',
150 'data_reduction_proxy/content/browser/content_lofi_decider.cc', 153 'data_reduction_proxy/content/browser/content_lofi_decider.cc',
151 'data_reduction_proxy/content/browser/content_lofi_decider.h', 154 'data_reduction_proxy/content/browser/content_lofi_decider.h',
152 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.cc', 155 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl .cc',
153 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f ilter.h', 156 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl .h',
154 ], 157 ],
155 }, 158 },
156 ], 159 ],
157 }], 160 }],
158 ], 161 ],
159 'targets': [ 162 'targets': [
160 { 163 {
161 # GN version: //components/data_reduction_proxy/core/browser 164 # GN version: //components/data_reduction_proxy/core/browser
162 'target_name': 'data_reduction_proxy_core_browser', 165 'target_name': 'data_reduction_proxy_core_browser',
163 'type': 'static_library', 166 'type': 'static_library',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 '<@(_outputs)', 298 '<@(_outputs)',
296 ], 299 ],
297 'includes': [ 300 'includes': [
298 '../build/util/version.gypi', 301 '../build/util/version.gypi',
299 ], 302 ],
300 }, 303 },
301 ], 304 ],
302 }, 305 },
303 ], 306 ],
304 } 307 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698