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

Side by Side Diff: components/components_tests.gyp

Issue 151003006: Add support for distilling arbitrary URLs in DOM Distiller Viewer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. added unit tests 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 # Dependencies of translate. 151 # Dependencies of translate.
152 'components.gyp:translate_core_browser', 152 'components.gyp:translate_core_browser',
153 'components.gyp:translate_core_common', 153 'components.gyp:translate_core_common',
154 'components.gyp:translate_language_detection', 154 'components.gyp:translate_language_detection',
155 155
156 # Dependencies of variations 156 # Dependencies of variations
157 'components.gyp:variations', 157 'components.gyp:variations',
158 ], 158 ],
159 'conditions': [ 159 'conditions': [
160 ['OS != "ios"', { 160 ['OS != "ios"', {
161 'sources': [
162 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
163 ],
161 'dependencies': [ 164 'dependencies': [
162 # Dependencies of browser_context_keyed_service 165 # Dependencies of browser_context_keyed_service
163 'components.gyp:browser_context_keyed_service', 166 'components.gyp:browser_context_keyed_service',
164 167
168 # Dependencies of dom_distiller
169 'components.gyp:dom_distiller_content',
170
165 # Dependencies of 171 # Dependencies of
166 # intercept_navigation_resource_throttle_unittest.cc 172 # intercept_navigation_resource_throttle_unittest.cc
167 '../skia/skia.gyp:skia', 173 '../skia/skia.gyp:skia',
168 'components.gyp:navigation_interception', 174 'components.gyp:navigation_interception',
169 175
170 # Dependencies of precache/content 176 # Dependencies of precache/content
171 'components.gyp:precache_content', 177 'components.gyp:precache_content',
172 178
173 # Dependencies of sessions 179 # Dependencies of sessions
174 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 180 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 'dependencies': [ 491 'dependencies': [
486 '../base/allocator/allocator.gyp:allocator', 492 '../base/allocator/allocator.gyp:allocator',
487 ], 493 ],
488 }], 494 }],
489 ], 495 ],
490 }, 496 },
491 ], 497 ],
492 }], 498 }],
493 ], 499 ],
494 } 500 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698