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

Side by Side Diff: components/dom_distiller.gypi

Issue 254483003: Start requiring DistillerPage for calls to DomDistillerService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Indent fixes (full git cl format) Created 6 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 | 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 'target_name': 'dom_distiller_webui', 10 'target_name': 'dom_distiller_webui',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'include_dirs': [ 106 'include_dirs': [
107 '..', 107 '..',
108 ], 108 ],
109 'sources': [ 109 'sources': [
110 'dom_distiller/core/dom_distiller_test_util.cc', 110 'dom_distiller/core/dom_distiller_test_util.cc',
111 'dom_distiller/core/dom_distiller_test_util.h', 111 'dom_distiller/core/dom_distiller_test_util.h',
112 'dom_distiller/core/fake_db.cc', 112 'dom_distiller/core/fake_db.cc',
113 'dom_distiller/core/fake_db.h', 113 'dom_distiller/core/fake_db.h',
114 'dom_distiller/core/fake_distiller.cc', 114 'dom_distiller/core/fake_distiller.cc',
115 'dom_distiller/core/fake_distiller.h', 115 'dom_distiller/core/fake_distiller.h',
116 'dom_distiller/core/fake_distiller_page.cc',
117 'dom_distiller/core/fake_distiller_page.h',
116 ], 118 ],
117 }, 119 },
118 { 120 {
119 'target_name': 'distilled_page_proto', 121 'target_name': 'distilled_page_proto',
120 'type': 'static_library', 122 'type': 'static_library',
121 'sources': [ 123 'sources': [
122 'dom_distiller/core/proto/distilled_article.proto', 124 'dom_distiller/core/proto/distilled_article.proto',
123 'dom_distiller/core/proto/distilled_page.proto', 125 'dom_distiller/core/proto/distilled_page.proto',
124 ], 126 ],
125 'variables': { 127 'variables': {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'jni_gen_package': 'dom_distiller_core', 181 'jni_gen_package': 'dom_distiller_core',
180 }, 182 },
181 'includes': [ '../build/jni_generator.gypi' ], 183 'includes': [ '../build/jni_generator.gypi' ],
182 }, 184 },
183 ], 185 ],
184 }], 186 }],
185 ], 187 ],
186 }], 188 }],
187 ], 189 ],
188 } 190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698