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

Side by Side Diff: components/dom_distiller.gypi

Issue 1042053003: Add calculation of derived features for distillable page model (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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/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/webui 8 # GN version: //components/dom_distiller/webui
9 'target_name': 'dom_distiller_webui', 9 'target_name': 'dom_distiller_webui',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 21 matching lines...) Expand all
32 }, 32 },
33 { 33 {
34 # GN version: //components/dom_distiller/core 34 # GN version: //components/dom_distiller/core
35 'target_name': 'dom_distiller_core', 35 'target_name': 'dom_distiller_core',
36 'type': 'static_library', 36 'type': 'static_library',
37 'dependencies': [ 37 'dependencies': [
38 '../base/base.gyp:base', 38 '../base/base.gyp:base',
39 '../base/base.gyp:base_prefs', 39 '../base/base.gyp:base_prefs',
40 '../skia/skia.gyp:skia', 40 '../skia/skia.gyp:skia',
41 '../sync/sync.gyp:sync', 41 '../sync/sync.gyp:sync',
42 '../third_party/re2/re2.gyp:re2',
42 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto', 43 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_js_p roto',
43 'components.gyp:leveldb_proto', 44 'components.gyp:leveldb_proto',
44 'components_resources.gyp:components_resources', 45 'components_resources.gyp:components_resources',
45 'components_strings.gyp:components_strings', 46 'components_strings.gyp:components_strings',
46 'distilled_page_proto', 47 'distilled_page_proto',
47 'pref_registry', 48 'pref_registry',
48 ], 49 ],
49 'include_dirs': [ 50 'include_dirs': [
50 '..', 51 '..',
51 ], 52 ],
(...skipping 29 matching lines...) Expand all
81 'dom_distiller/core/dom_distiller_observer.h', 82 'dom_distiller/core/dom_distiller_observer.h',
82 'dom_distiller/core/dom_distiller_service.cc', 83 'dom_distiller/core/dom_distiller_service.cc',
83 'dom_distiller/core/dom_distiller_service.h', 84 'dom_distiller/core/dom_distiller_service.h',
84 'dom_distiller/core/dom_distiller_service_android.cc', 85 'dom_distiller/core/dom_distiller_service_android.cc',
85 'dom_distiller/core/dom_distiller_service_android.h', 86 'dom_distiller/core/dom_distiller_service_android.h',
86 'dom_distiller/core/dom_distiller_store.cc', 87 'dom_distiller/core/dom_distiller_store.cc',
87 'dom_distiller/core/dom_distiller_store.h', 88 'dom_distiller/core/dom_distiller_store.h',
88 'dom_distiller/core/feedback_reporter.cc', 89 'dom_distiller/core/feedback_reporter.cc',
89 'dom_distiller/core/feedback_reporter.h', 90 'dom_distiller/core/feedback_reporter.h',
90 'dom_distiller/core/font_family_list.h', 91 'dom_distiller/core/font_family_list.h',
92 'dom_distiller/core/page_features.cc',
93 'dom_distiller/core/page_features.h',
91 'dom_distiller/core/task_tracker.cc', 94 'dom_distiller/core/task_tracker.cc',
92 'dom_distiller/core/task_tracker.h', 95 'dom_distiller/core/task_tracker.h',
93 'dom_distiller/core/theme_list.h', 96 'dom_distiller/core/theme_list.h',
94 'dom_distiller/core/url_constants.cc', 97 'dom_distiller/core/url_constants.cc',
95 'dom_distiller/core/url_constants.h', 98 'dom_distiller/core/url_constants.h',
96 'dom_distiller/core/url_utils.cc', 99 'dom_distiller/core/url_utils.cc',
97 'dom_distiller/core/url_utils.h', 100 'dom_distiller/core/url_utils.h',
98 'dom_distiller/core/url_utils_android.cc', 101 'dom_distiller/core/url_utils_android.cc',
99 'dom_distiller/core/url_utils_android.h', 102 'dom_distiller/core/url_utils_android.h',
100 'dom_distiller/core/viewer.cc', 103 'dom_distiller/core/viewer.cc',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 'variables': { 257 'variables': {
255 'package_name': 'org/chromium/components/dom_distiller/core', 258 'package_name': 'org/chromium/components/dom_distiller/core',
256 'template_deps': ['dom_distiller/core/theme_list.h'], 259 'template_deps': ['dom_distiller/core/theme_list.h'],
257 }, 260 },
258 'includes': [ '../build/android/java_cpp_template.gypi' ], 261 'includes': [ '../build/android/java_cpp_template.gypi' ],
259 }, 262 },
260 ], 263 ],
261 }], 264 }],
262 ], 265 ],
263 } 266 }
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