OLD | NEW |
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 ], | 109 ], |
110 }, | 110 }, |
111 ], | 111 ], |
112 }], | 112 }], |
113 ['OS!="ios"', { | 113 ['OS!="ios"', { |
114 'targets' : [ | 114 'targets' : [ |
115 { | 115 { |
116 # GN version: //components/data_reduction_proxy/content/common | 116 # GN version: //components/data_reduction_proxy/content/common |
117 'target_name': 'data_reduction_proxy_content_common', | 117 'target_name': 'data_reduction_proxy_content_common', |
118 'type': 'static_library', | 118 'type': 'static_library', |
| 119 'sources': [ |
| 120 'data_reduction_proxy/content/common/data_reduction_proxy.mojom', |
| 121 ], |
119 'dependencies': [ | 122 'dependencies': [ |
120 '../content/content.gyp:content_common', | 123 '../net/net.gyp:net_base_mojo_bindings', |
121 '../ipc/ipc.gyp:ipc', | |
122 ], | 124 ], |
123 'include_dirs': [ | 125 'export_dependent_settings': [ |
124 '..', | 126 '../net/net.gyp:net_base_mojo_bindings', |
125 ], | 127 ], |
126 'sources': [ | 128 'variables': { |
127 'data_reduction_proxy/content/common/data_reduction_proxy_messages.c
c', | 129 'mojom_typemaps': [ |
128 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h
', | 130 '<(DEPTH)/net/base/mojo/net_base.typemap', |
129 ], | 131 ], |
| 132 }, |
| 133 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
130 }, | 134 }, |
131 { | 135 { |
132 # GN version: //components/data_reduction_proxy/content/browser | 136 # GN version: //components/data_reduction_proxy/content/browser |
133 'target_name': 'data_reduction_proxy_content_browser', | 137 'target_name': 'data_reduction_proxy_content_browser', |
134 'type': 'static_library', | 138 'type': 'static_library', |
135 'dependencies': [ | 139 'dependencies': [ |
136 '../content/content.gyp:content_common', | 140 '../content/content.gyp:content_common', |
137 '../ipc/ipc.gyp:ipc', | |
138 '../skia/skia.gyp:skia', | 141 '../skia/skia.gyp:skia', |
139 'data_reduction_proxy_content_common', | 142 'data_reduction_proxy_content_common', |
140 ], | 143 ], |
141 'include_dirs': [ | 144 'include_dirs': [ |
142 '..', | 145 '..', |
143 ], | 146 ], |
144 'sources': [ | 147 'sources': [ |
145 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc', | 148 'data_reduction_proxy/content/browser/content_lofi_ui_service.cc', |
146 'data_reduction_proxy/content/browser/content_lofi_ui_service.h', | 149 'data_reduction_proxy/content/browser/content_lofi_ui_service.h', |
147 'data_reduction_proxy/content/browser/content_lofi_decider.cc', | 150 'data_reduction_proxy/content/browser/content_lofi_decider.cc', |
148 'data_reduction_proxy/content/browser/content_lofi_decider.h', | 151 'data_reduction_proxy/content/browser/content_lofi_decider.h', |
149 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f
ilter.cc', | 152 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl
.cc', |
150 'data_reduction_proxy/content/browser/data_reduction_proxy_message_f
ilter.h', | 153 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl
.h', |
151 ], | 154 ], |
152 }, | 155 }, |
153 ], | 156 ], |
154 }], | 157 }], |
155 ], | 158 ], |
156 'targets': [ | 159 'targets': [ |
157 { | 160 { |
158 # GN version: //components/data_reduction_proxy/core/browser | 161 # GN version: //components/data_reduction_proxy/core/browser |
159 'target_name': 'data_reduction_proxy_core_browser', | 162 'target_name': 'data_reduction_proxy_core_browser', |
160 'type': 'static_library', | 163 'type': 'static_library', |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 '<@(_outputs)', | 295 '<@(_outputs)', |
293 ], | 296 ], |
294 'includes': [ | 297 'includes': [ |
295 '../build/util/version.gypi', | 298 '../build/util/version.gypi', |
296 ], | 299 ], |
297 }, | 300 }, |
298 ], | 301 ], |
299 }, | 302 }, |
300 ], | 303 ], |
301 } | 304 } |
OLD | NEW |