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

Side by Side Diff: components/dom_distiller.gypi

Issue 403323005: Observer Support for DistilledPagePrefs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: formatting Created 6 years, 5 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 | Annotate | Revision Log
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 'conditions': [ 6 'conditions': [
7 ['android_webview_build == 0', { 7 ['android_webview_build == 0', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 # GN version: //components/dom_distiller/webui 10 # GN version: //components/dom_distiller/webui
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'dom_distiller/core/article_distillation_update.cc', 57 'dom_distiller/core/article_distillation_update.cc',
58 'dom_distiller/core/article_distillation_update.h', 58 'dom_distiller/core/article_distillation_update.h',
59 'dom_distiller/core/article_entry.cc', 59 'dom_distiller/core/article_entry.cc',
60 'dom_distiller/core/article_entry.h', 60 'dom_distiller/core/article_entry.h',
61 'dom_distiller/core/distilled_content_store.cc', 61 'dom_distiller/core/distilled_content_store.cc',
62 'dom_distiller/core/distilled_content_store.h', 62 'dom_distiller/core/distilled_content_store.h',
63 'dom_distiller/core/distilled_page_prefs.cc', 63 'dom_distiller/core/distilled_page_prefs.cc',
64 'dom_distiller/core/distilled_page_prefs.h', 64 'dom_distiller/core/distilled_page_prefs.h',
65 'dom_distiller/core/distilled_page_prefs_android.cc', 65 'dom_distiller/core/distilled_page_prefs_android.cc',
66 'dom_distiller/core/distilled_page_prefs_android.h', 66 'dom_distiller/core/distilled_page_prefs_android.h',
67 'dom_distiller/core/distilled_page_prefs_observer_wrapper.cc',
nyquist 2014/07/22 22:51:36 I think you need to also update dom_distiller/core
sunangel 2014/07/23 16:22:03 Done. On 2014/07/22 22:51:36, nyquist wrote:
68 'dom_distiller/core/distilled_page_prefs_observer_wrapper.h',
67 'dom_distiller/core/distiller.cc', 69 'dom_distiller/core/distiller.cc',
68 'dom_distiller/core/distiller.h', 70 'dom_distiller/core/distiller.h',
69 'dom_distiller/core/distiller_page.cc', 71 'dom_distiller/core/distiller_page.cc',
70 'dom_distiller/core/distiller_page.h', 72 'dom_distiller/core/distiller_page.h',
71 'dom_distiller/core/distiller_url_fetcher.cc', 73 'dom_distiller/core/distiller_url_fetcher.cc',
72 'dom_distiller/core/distiller_url_fetcher.h', 74 'dom_distiller/core/distiller_url_fetcher.h',
73 'dom_distiller/core/dom_distiller_constants.cc', 75 'dom_distiller/core/dom_distiller_constants.cc',
74 'dom_distiller/core/dom_distiller_constants.h', 76 'dom_distiller/core/dom_distiller_constants.h',
75 'dom_distiller/core/dom_distiller_model.cc', 77 'dom_distiller/core/dom_distiller_model.cc',
76 'dom_distiller/core/dom_distiller_model.h', 78 'dom_distiller/core/dom_distiller_model.h',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'variables': { 184 'variables': {
183 'java_in_dir': 'dom_distiller/android/java', 185 'java_in_dir': 'dom_distiller/android/java',
184 }, 186 },
185 'includes': [ '../build/java.gypi' ], 187 'includes': [ '../build/java.gypi' ],
186 }, 188 },
187 { 189 {
188 'target_name': 'dom_distiller_core_jni_headers', 190 'target_name': 'dom_distiller_core_jni_headers',
189 'type': 'none', 191 'type': 'none',
190 'sources': [ 192 'sources': [
191 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DistilledPagePrefs.java', 193 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DistilledPagePrefs.java',
194 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DistilledPagePrefsObserverWrapper.java',
192 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DomDistillerService.java', 195 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DomDistillerService.java',
193 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DomDistillerUrlUtils.java', 196 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/DomDistillerUrlUtils.java',
194 ], 197 ],
195 'variables': { 198 'variables': {
196 'jni_gen_package': 'dom_distiller_core', 199 'jni_gen_package': 'dom_distiller_core',
197 }, 200 },
198 'includes': [ '../build/jni_generator.gypi' ], 201 'includes': [ '../build/jni_generator.gypi' ],
199 }, 202 },
200 { 203 {
201 'target_name': 'dom_distiller_core_theme_java', 204 'target_name': 'dom_distiller_core_theme_java',
202 'type': 'none', 205 'type': 'none',
203 'sources': [ 206 'sources': [
204 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/Theme.template', 207 'dom_distiller/android/java/src/org/chromium/components/dom_dist iller/core/Theme.template',
205 ], 208 ],
206 'variables': { 209 'variables': {
207 'package_name': 'org/chromium/components/dom_distiller/core', 210 'package_name': 'org/chromium/components/dom_distiller/core',
208 'template_deps': ['dom_distiller/core/theme_list.h'], 211 'template_deps': ['dom_distiller/core/theme_list.h'],
209 }, 212 },
210 'includes': [ '../build/android/java_cpp_template.gypi' ], 213 'includes': [ '../build/android/java_cpp_template.gypi' ],
211 }, 214 },
212 ], 215 ],
213 }], 216 }],
214 ], 217 ],
215 }], 218 }],
216 ], 219 ],
217 } 220 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698