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

Side by Side Diff: components/dom_distiller.gypi

Issue 1248643004: Test distillability without JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@early
Patch Set: fix browsertest, merge webkit CL, merge http://crrev.com/1403413004 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/dom_distiller/DEPS » ('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 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 19 matching lines...) Expand all
37 'dependencies': [ 55 'dependencies': [
38 '../base/base.gyp:base', 56 '../base/base.gyp:base',
39 '../base/base.gyp:base_prefs', 57 '../base/base.gyp:base_prefs',
40 '../skia/skia.gyp:skia', 58 '../skia/skia.gyp:skia',
41 '../sync/sync.gyp:sync', 59 '../sync/sync.gyp:sync',
42 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto', 60 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto',
43 '../third_party/re2/re2.gyp:re2', 61 '../third_party/re2/re2.gyp:re2',
44 'components.gyp:leveldb_proto', 62 'components.gyp:leveldb_proto',
45 'components_resources.gyp:components_resources', 63 'components_resources.gyp:components_resources',
46 'components_strings.gyp:components_strings', 64 'components_strings.gyp:components_strings',
47 'dom_distiller_protos',
48 'pref_registry', 65 'pref_registry',
49 'variations', 66 'variations',
50 ], 67 ],
51 'include_dirs': [ 68 'include_dirs': [
52 '..', 69 '..',
53 ], 70 ],
54 'export_dependent_settings': [ 71 'export_dependent_settings': [
55 'dom_distiller_protos',
56 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto', 72 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto',
57 ], 73 ],
58 'sources': [ 74 'sources': [
59 'dom_distiller/android/component_jni_registrar.cc', 75 'dom_distiller/android/component_jni_registrar.cc',
60 'dom_distiller/android/component_jni_registrar.h', 76 'dom_distiller/android/component_jni_registrar.h',
61 'dom_distiller/core/article_attachments_data.cc', 77 'dom_distiller/core/article_attachments_data.cc',
62 'dom_distiller/core/article_attachments_data.h', 78 'dom_distiller/core/article_attachments_data.h',
63 'dom_distiller/core/article_distillation_update.cc', 79 'dom_distiller/core/article_distillation_update.cc',
64 'dom_distiller/core/article_distillation_update.h', 80 'dom_distiller/core/article_distillation_update.h',
65 'dom_distiller/core/article_entry.cc', 81 'dom_distiller/core/article_entry.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 }, 191 },
176 ], 192 ],
177 'conditions': [ 193 'conditions': [
178 ['OS != "ios"', { 194 ['OS != "ios"', {
179 'targets': [ 195 'targets': [
180 { 196 {
181 # GN version: //components/dom_distiller/content:content_browser 197 # GN version: //components/dom_distiller/content:content_browser
182 'target_name': 'dom_distiller_content_browser', 198 'target_name': 'dom_distiller_content_browser',
183 'type': 'static_library', 199 'type': 'static_library',
184 'dependencies': [ 200 'dependencies': [
201 'dom_distiller_content_common',
185 'dom_distiller_core', 202 'dom_distiller_core',
186 'dom_distiller_mojo_bindings', 203 'dom_distiller_mojo_bindings',
187 'dom_distiller_protos', 204 'dom_distiller_protos',
188 '../base/base.gyp:base', 205 '../base/base.gyp:base',
189 '../content/content.gyp:content_browser', 206 '../content/content.gyp:content_browser',
190 '../mojo/mojo_base.gyp:mojo_environment_chromium', 207 '../mojo/mojo_base.gyp:mojo_environment_chromium',
191 '../net/net.gyp:net', 208 '../net/net.gyp:net',
192 '../skia/skia.gyp:skia', 209 '../skia/skia.gyp:skia',
193 '../sync/sync.gyp:sync', 210 '../sync/sync.gyp:sync',
194 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 211 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
195 '../ui/gfx/gfx.gyp:gfx', 212 '../ui/gfx/gfx.gyp:gfx',
196 '../url/url.gyp:url_lib', 213 '../url/url.gyp:url_lib',
197 'components_resources.gyp:components_resources', 214 'components_resources.gyp:components_resources',
198 'components_strings.gyp:components_strings', 215 'components_strings.gyp:components_strings',
199 ], 216 ],
200 'include_dirs': [ 217 'include_dirs': [
201 '..', 218 '..',
202 ], 219 ],
203 'sources': [ 220 'sources': [
221 'dom_distiller/content/browser/distillability_driver.cc',
222 'dom_distiller/content/browser/distillability_driver.h',
204 'dom_distiller/content/browser/distillable_page_utils.cc', 223 'dom_distiller/content/browser/distillable_page_utils.cc',
205 'dom_distiller/content/browser/distillable_page_utils.h', 224 'dom_distiller/content/browser/distillable_page_utils.h',
206 'dom_distiller/content/browser/distillable_page_utils_android.cc', 225 'dom_distiller/content/browser/distillable_page_utils_android.cc',
207 'dom_distiller/content/browser/distillable_page_utils_android.h', 226 'dom_distiller/content/browser/distillable_page_utils_android.h',
208 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' , 227 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' ,
209 'dom_distiller/content/browser/distiller_javascript_service_impl.h', 228 'dom_distiller/content/browser/distiller_javascript_service_impl.h',
210 'dom_distiller/content/browser/distiller_javascript_utils.cc', 229 'dom_distiller/content/browser/distiller_javascript_utils.cc',
211 'dom_distiller/content/browser/distiller_javascript_utils.h', 230 'dom_distiller/content/browser/distiller_javascript_utils.h',
212 'dom_distiller/content/browser/distiller_page_web_contents.cc', 231 'dom_distiller/content/browser/distiller_page_web_contents.cc',
213 'dom_distiller/content/browser/distiller_page_web_contents.h', 232 'dom_distiller/content/browser/distiller_page_web_contents.h',
(...skipping 10 matching lines...) Expand all
224 'dom_distiller_core_jni_headers', 243 'dom_distiller_core_jni_headers',
225 ], 244 ],
226 }], 245 }],
227 ], 246 ],
228 }, 247 },
229 { 248 {
230 # GN version: //components/dom_distiller/content:content_renderer 249 # GN version: //components/dom_distiller/content:content_renderer
231 'target_name': 'dom_distiller_content_renderer', 250 'target_name': 'dom_distiller_content_renderer',
232 'type': 'static_library', 251 'type': 'static_library',
233 'dependencies': [ 252 'dependencies': [
253 'dom_distiller_content_common',
234 'dom_distiller_mojo_bindings', 254 'dom_distiller_mojo_bindings',
255 'dom_distiller_protos',
235 '../base/base.gyp:base', 256 '../base/base.gyp:base',
236 '../content/content.gyp:content_browser', 257 '../content/content.gyp:content_browser',
237 '../gin/gin.gyp:gin', 258 '../gin/gin.gyp:gin',
238 '../mojo/mojo_base.gyp:mojo_environment_chromium', 259 '../mojo/mojo_base.gyp:mojo_environment_chromium',
239 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 260 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
240 ], 261 ],
241 'include_dirs': [ 262 'include_dirs': [
242 '..', 263 '..',
243 ], 264 ],
265 'export_dependent_settings': [
266 'dom_distiller_protos',
267 ],
244 'sources': [ 268 'sources': [
269 'dom_distiller/content/renderer/distillability_agent.cc',
270 'dom_distiller/content/renderer/distillability_agent.h',
245 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c', 271 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c',
246 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ', 272 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ',
247 'dom_distiller/content/renderer/distiller_native_javascript.cc', 273 'dom_distiller/content/renderer/distiller_native_javascript.cc',
248 'dom_distiller/content/renderer/distiller_native_javascript.h', 274 'dom_distiller/content/renderer/distiller_native_javascript.h',
249 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc', 275 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc',
250 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h', 276 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h',
251 ], 277 ],
252 }, 278 },
253 279
254 ], 280 ],
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 'variables': { 375 'variables': {
350 'package_name': 'org/chromium/components/dom_distiller/core', 376 'package_name': 'org/chromium/components/dom_distiller/core',
351 'template_deps': ['dom_distiller/core/theme_list.h'], 377 'template_deps': ['dom_distiller/core/theme_list.h'],
352 }, 378 },
353 'includes': [ '../build/android/java_cpp_template.gypi' ], 379 'includes': [ '../build/android/java_cpp_template.gypi' ],
354 }, 380 },
355 ], 381 ],
356 }], 382 }],
357 ], 383 ],
358 } 384 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/dom_distiller/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698