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

Side by Side Diff: components/dom_distiller.gypi

Issue 1434433002: Pass distillability updates from renderer to browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@model
Patch Set: address tsepez's comment Created 5 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/dom_distiller/content:content_common
9 'target_name': 'dom_distiller_content_common',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../content/content.gyp:content_common',
17 '../ipc/ipc.gyp:ipc',
18 '../url/url.gyp:url_lib',
19 ],
20 'sources': [
21 'dom_distiller/content/common/distiller_messages.cc',
22 'dom_distiller/content/common/distiller_messages.h',
23 ],
24 },
25 {
8 # GN version: //components/dom_distiller/webui 26 # GN version: //components/dom_distiller/webui
9 'target_name': 'dom_distiller_webui', 27 'target_name': 'dom_distiller_webui',
10 'type': 'static_library', 28 'type': 'static_library',
11 'dependencies': [ 29 'dependencies': [
12 '../base/base.gyp:base', 30 '../base/base.gyp:base',
13 '../content/content.gyp:content_browser', 31 '../content/content.gyp:content_browser',
14 '../net/net.gyp:net', 32 '../net/net.gyp:net',
15 '../skia/skia.gyp:skia', 33 '../skia/skia.gyp:skia',
16 '../sync/sync.gyp:sync', 34 '../sync/sync.gyp:sync',
17 '../url/url.gyp:url_lib', 35 '../url/url.gyp:url_lib',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 }, 193 },
176 ], 194 ],
177 'conditions': [ 195 'conditions': [
178 ['OS != "ios"', { 196 ['OS != "ios"', {
179 'targets': [ 197 'targets': [
180 { 198 {
181 # GN version: //components/dom_distiller/content:content_browser 199 # GN version: //components/dom_distiller/content:content_browser
182 'target_name': 'dom_distiller_content_browser', 200 'target_name': 'dom_distiller_content_browser',
183 'type': 'static_library', 201 'type': 'static_library',
184 'dependencies': [ 202 'dependencies': [
203 'dom_distiller_content_common',
185 'dom_distiller_core', 204 'dom_distiller_core',
186 'dom_distiller_mojo_bindings', 205 'dom_distiller_mojo_bindings',
187 'dom_distiller_protos', 206 'dom_distiller_protos',
188 '../base/base.gyp:base', 207 '../base/base.gyp:base',
189 '../content/content.gyp:content_browser', 208 '../content/content.gyp:content_browser',
190 '../mojo/mojo_base.gyp:mojo_environment_chromium', 209 '../mojo/mojo_base.gyp:mojo_environment_chromium',
191 '../net/net.gyp:net', 210 '../net/net.gyp:net',
192 '../skia/skia.gyp:skia', 211 '../skia/skia.gyp:skia',
193 '../sync/sync.gyp:sync', 212 '../sync/sync.gyp:sync',
194 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 213 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
195 '../ui/gfx/gfx.gyp:gfx', 214 '../ui/gfx/gfx.gyp:gfx',
196 '../url/url.gyp:url_lib', 215 '../url/url.gyp:url_lib',
197 'components_resources.gyp:components_resources', 216 'components_resources.gyp:components_resources',
198 'components_strings.gyp:components_strings', 217 'components_strings.gyp:components_strings',
199 ], 218 ],
200 'include_dirs': [ 219 'include_dirs': [
201 '..', 220 '..',
202 ], 221 ],
203 'sources': [ 222 'sources': [
223 'dom_distiller/content/browser/distillability_driver.cc',
224 'dom_distiller/content/browser/distillability_driver.h',
204 'dom_distiller/content/browser/distillable_page_utils.cc', 225 'dom_distiller/content/browser/distillable_page_utils.cc',
205 'dom_distiller/content/browser/distillable_page_utils.h', 226 'dom_distiller/content/browser/distillable_page_utils.h',
206 'dom_distiller/content/browser/distillable_page_utils_android.cc', 227 'dom_distiller/content/browser/distillable_page_utils_android.cc',
207 'dom_distiller/content/browser/distillable_page_utils_android.h', 228 'dom_distiller/content/browser/distillable_page_utils_android.h',
208 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' , 229 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' ,
209 'dom_distiller/content/browser/distiller_javascript_service_impl.h', 230 'dom_distiller/content/browser/distiller_javascript_service_impl.h',
210 'dom_distiller/content/browser/distiller_javascript_utils.cc', 231 'dom_distiller/content/browser/distiller_javascript_utils.cc',
211 'dom_distiller/content/browser/distiller_javascript_utils.h', 232 'dom_distiller/content/browser/distiller_javascript_utils.h',
212 'dom_distiller/content/browser/distiller_page_web_contents.cc', 233 'dom_distiller/content/browser/distiller_page_web_contents.cc',
213 'dom_distiller/content/browser/distiller_page_web_contents.h', 234 'dom_distiller/content/browser/distiller_page_web_contents.h',
(...skipping 10 matching lines...) Expand all
224 'dom_distiller_core_jni_headers', 245 'dom_distiller_core_jni_headers',
225 ], 246 ],
226 }], 247 }],
227 ], 248 ],
228 }, 249 },
229 { 250 {
230 # GN version: //components/dom_distiller/content:content_renderer 251 # GN version: //components/dom_distiller/content:content_renderer
231 'target_name': 'dom_distiller_content_renderer', 252 'target_name': 'dom_distiller_content_renderer',
232 'type': 'static_library', 253 'type': 'static_library',
233 'dependencies': [ 254 'dependencies': [
255 'dom_distiller_content_common',
234 'dom_distiller_mojo_bindings', 256 'dom_distiller_mojo_bindings',
257 'dom_distiller_protos',
235 '../base/base.gyp:base', 258 '../base/base.gyp:base',
236 '../content/content.gyp:content_browser', 259 '../content/content.gyp:content_browser',
237 '../gin/gin.gyp:gin', 260 '../gin/gin.gyp:gin',
238 '../mojo/mojo_base.gyp:mojo_environment_chromium', 261 '../mojo/mojo_base.gyp:mojo_environment_chromium',
239 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 262 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
240 ], 263 ],
241 'include_dirs': [ 264 'include_dirs': [
242 '..', 265 '..',
243 ], 266 ],
267 'export_dependent_settings': [
268 'dom_distiller_protos',
269 ],
244 'sources': [ 270 'sources': [
271 'dom_distiller/content/renderer/distillability_agent.cc',
272 'dom_distiller/content/renderer/distillability_agent.h',
245 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c', 273 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c',
246 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ', 274 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ',
247 'dom_distiller/content/renderer/distiller_native_javascript.cc', 275 'dom_distiller/content/renderer/distiller_native_javascript.cc',
248 'dom_distiller/content/renderer/distiller_native_javascript.h', 276 'dom_distiller/content/renderer/distiller_native_javascript.h',
249 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc', 277 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc',
250 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h', 278 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h',
251 ], 279 ],
252 }, 280 },
253 281
254 ], 282 ],
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 'variables': { 377 'variables': {
350 'package_name': 'org/chromium/components/dom_distiller/core', 378 'package_name': 'org/chromium/components/dom_distiller/core',
351 'template_deps': ['dom_distiller/core/theme_list.h'], 379 'template_deps': ['dom_distiller/core/theme_list.h'],
352 }, 380 },
353 'includes': [ '../build/android/java_cpp_template.gypi' ], 381 'includes': [ '../build/android/java_cpp_template.gypi' ],
354 }, 382 },
355 ], 383 ],
356 }], 384 }],
357 ], 385 ],
358 } 386 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | components/dom_distiller/content/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698