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

Side by Side Diff: components/dom_distiller.gypi

Issue 146843010: Add support for multipage distillation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'dom_distiller/core/fake_db.cc', 105 'dom_distiller/core/fake_db.cc',
106 'dom_distiller/core/fake_db.h', 106 'dom_distiller/core/fake_db.h',
107 'dom_distiller/core/fake_distiller.cc', 107 'dom_distiller/core/fake_distiller.cc',
108 'dom_distiller/core/fake_distiller.h', 108 'dom_distiller/core/fake_distiller.h',
109 ], 109 ],
110 }, 110 },
111 { 111 {
112 'target_name': 'distilled_page_proto', 112 'target_name': 'distilled_page_proto',
113 'type': 'static_library', 113 'type': 'static_library',
114 'sources': [ 114 'sources': [
115 'dom_distiller/core/proto/distilled_article.proto',
115 'dom_distiller/core/proto/distilled_page.proto', 116 'dom_distiller/core/proto/distilled_page.proto',
116 ], 117 ],
117 'variables': { 118 'variables': {
118 'proto_in_dir': 'dom_distiller/core/proto', 119 'proto_in_dir': 'dom_distiller/core/proto',
119 'proto_out_dir': 'components/dom_distiller/core/proto', 120 'proto_out_dir': 'components/dom_distiller/core/proto',
120 }, 121 },
121 'includes': [ '../build/protoc.gypi' ] 122 'includes': [ '../build/protoc.gypi' ]
122 }, 123 },
123 ], 124 ],
124 'conditions': [ 125 'conditions': [
(...skipping 16 matching lines...) Expand all
141 'dom_distiller/content/dom_distiller_viewer_source.cc', 142 'dom_distiller/content/dom_distiller_viewer_source.cc',
142 'dom_distiller/content/dom_distiller_viewer_source.h', 143 'dom_distiller/content/dom_distiller_viewer_source.h',
143 ], 144 ],
144 }, 145 },
145 ], 146 ],
146 }], 147 }],
147 ], 148 ],
148 }], 149 }],
149 ], 150 ],
150 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698