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

Side by Side Diff: components/dom_distiller.gypi

Issue 105623002: Debug UI for DOM distiller supports distillation and lists articles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup after the mechanical-style move in patch set 1 Created 7 years 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',
11 'type': 'static_library', 11 'type': 'static_library',
12 'dependencies': [ 12 'dependencies': [
13 'component_strings.gyp:component_strings', 13 'component_strings.gyp:component_strings',
14 'dom_distiller_core', 14 'dom_distiller_core',
15 'dom_distiller_resources', 15 'dom_distiller_resources',
16 '../base/base.gyp:base', 16 '../base/base.gyp:base',
17 '../content/content.gyp:content_browser', 17 '../content/content.gyp:content_browser',
18 '../skia/skia.gyp:skia', 18 '../skia/skia.gyp:skia',
19 '../sync/sync.gyp:sync',
19 ], 20 ],
20 'include_dirs': [ 21 'include_dirs': [
21 '..', 22 '..',
22 ], 23 ],
23 'sources': [ 24 'sources': [
25 'dom_distiller/webui/dom_distiller_handler.cc',
26 'dom_distiller/webui/dom_distiller_handler.h',
24 'dom_distiller/webui/dom_distiller_ui.cc', 27 'dom_distiller/webui/dom_distiller_ui.cc',
25 'dom_distiller/webui/dom_distiller_ui.h', 28 'dom_distiller/webui/dom_distiller_ui.h',
26 'dom_distiller/webui/dom_distiller_handler.cc',
27 'dom_distiller/webui/dom_distiller_handler.h',
28 ], 29 ],
29 }, 30 },
30 { 31 {
31 'target_name': 'dom_distiller_content', 32 'target_name': 'dom_distiller_content',
32 'type': 'static_library', 33 'type': 'static_library',
33 'dependencies': [ 34 'dependencies': [
34 'dom_distiller_core', 35 'dom_distiller_core',
35 '../skia/skia.gyp:skia', 36 '../skia/skia.gyp:skia',
36 '../sync/sync.gyp:sync', 37 '../sync/sync.gyp:sync',
37 ], 38 ],
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'variables': { 110 'variables': {
110 'proto_in_dir': 'dom_distiller/core/proto', 111 'proto_in_dir': 'dom_distiller/core/proto',
111 'proto_out_dir': 'components/dom_distiller/core/proto', 112 'proto_out_dir': 'components/dom_distiller/core/proto',
112 }, 113 },
113 'includes': [ '../build/protoc.gypi' ] 114 'includes': [ '../build/protoc.gypi' ]
114 }, 115 },
115 ], 116 ],
116 }], 117 }],
117 ], 118 ],
118 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698