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

Side by Side Diff: components/dom_distiller.gypi

Issue 189713002: Declare dependency on blink_headers in targets that use blink headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'conditions': [ 114 'conditions': [
115 ['OS != "ios"', { 115 ['OS != "ios"', {
116 'targets': [ 116 'targets': [
117 { 117 {
118 'target_name': 'dom_distiller_content', 118 'target_name': 'dom_distiller_content',
119 'type': 'static_library', 119 'type': 'static_library',
120 'dependencies': [ 120 'dependencies': [
121 'component_resources.gyp:component_resources', 121 'component_resources.gyp:component_resources',
122 'component_strings.gyp:component_strings', 122 'component_strings.gyp:component_strings',
123 'dom_distiller_core', 123 'dom_distiller_core',
124 '../content/content.gyp:content_browser',
124 '../net/net.gyp:net', 125 '../net/net.gyp:net',
125 '../skia/skia.gyp:skia', 126 '../skia/skia.gyp:skia',
126 '../sync/sync.gyp:sync', 127 '../sync/sync.gyp:sync',
127 ], 128 ],
128 'include_dirs': [ 129 'include_dirs': [
129 '..', 130 '..',
130 ], 131 ],
131 'sources': [ 132 'sources': [
132 'dom_distiller/content/distiller_page_web_contents.cc', 133 'dom_distiller/content/distiller_page_web_contents.cc',
133 'dom_distiller/content/distiller_page_web_contents.h', 134 'dom_distiller/content/distiller_page_web_contents.h',
134 'dom_distiller/content/dom_distiller_viewer_source.cc', 135 'dom_distiller/content/dom_distiller_viewer_source.cc',
135 'dom_distiller/content/dom_distiller_viewer_source.h', 136 'dom_distiller/content/dom_distiller_viewer_source.h',
136 ], 137 ],
137 }, 138 },
138 ], 139 ],
139 }], 140 }],
140 ], 141 ],
141 }], 142 }],
142 ], 143 ],
143 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698