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

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: Added new strings to iOS whitelist 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 15 matching lines...) Expand all
26 'browser_context_keyed_service/dependency_graph_unittest.cc', 26 'browser_context_keyed_service/dependency_graph_unittest.cc',
27 'cloud_devices/printer_description_unittest.cc', 27 'cloud_devices/printer_description_unittest.cc',
28 'dom_distiller/core/article_entry_unittest.cc', 28 'dom_distiller/core/article_entry_unittest.cc',
29 'dom_distiller/core/distiller_unittest.cc', 29 'dom_distiller/core/distiller_unittest.cc',
30 'dom_distiller/core/distiller_url_fetcher_unittest.cc', 30 'dom_distiller/core/distiller_url_fetcher_unittest.cc',
31 'dom_distiller/core/dom_distiller_database_unittest.cc', 31 'dom_distiller/core/dom_distiller_database_unittest.cc',
32 'dom_distiller/core/dom_distiller_model_unittest.cc', 32 'dom_distiller/core/dom_distiller_model_unittest.cc',
33 'dom_distiller/core/dom_distiller_service_unittest.cc', 33 'dom_distiller/core/dom_distiller_service_unittest.cc',
34 'dom_distiller/core/dom_distiller_store_unittest.cc', 34 'dom_distiller/core/dom_distiller_store_unittest.cc',
35 'dom_distiller/core/task_tracker_unittest.cc', 35 'dom_distiller/core/task_tracker_unittest.cc',
36 'dom_distiller/core/url_utils_unittest.cc',
36 'json_schema/json_schema_validator_unittest.cc', 37 'json_schema/json_schema_validator_unittest.cc',
37 'json_schema/json_schema_validator_unittest_base.cc', 38 'json_schema/json_schema_validator_unittest_base.cc',
38 'json_schema/json_schema_validator_unittest_base.h', 39 'json_schema/json_schema_validator_unittest_base.h',
39 'language_usage_metrics/language_usage_metrics_unittest.cc', 40 'language_usage_metrics/language_usage_metrics_unittest.cc',
40 'metrics/metrics_hashes_unittest.cc', 41 'metrics/metrics_hashes_unittest.cc',
41 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 42 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
42 'password_manager/core/browser/login_database_unittest.cc', 43 'password_manager/core/browser/login_database_unittest.cc',
43 'password_manager/core/browser/psl_matching_helper_unittest.cc', 44 'password_manager/core/browser/psl_matching_helper_unittest.cc',
44 'password_manager/core/browser/password_store_default_unittest.cc', 45 'password_manager/core/browser/password_store_default_unittest.cc',
45 'password_manager/core/browser/password_store_unittest.cc', 46 'password_manager/core/browser/password_store_unittest.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 # Dependencies of translate. 152 # Dependencies of translate.
152 'components.gyp:translate_core_browser', 153 'components.gyp:translate_core_browser',
153 'components.gyp:translate_core_common', 154 'components.gyp:translate_core_common',
154 'components.gyp:translate_language_detection', 155 'components.gyp:translate_language_detection',
155 156
156 # Dependencies of variations 157 # Dependencies of variations
157 'components.gyp:variations', 158 'components.gyp:variations',
158 ], 159 ],
159 'conditions': [ 160 'conditions': [
160 ['OS != "ios"', { 161 ['OS != "ios"', {
162 'sources': [
163 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
164 ],
161 'dependencies': [ 165 'dependencies': [
162 # Dependencies of browser_context_keyed_service 166 # Dependencies of browser_context_keyed_service
163 'components.gyp:browser_context_keyed_service', 167 'components.gyp:browser_context_keyed_service',
164 168
169 # Dependencies of dom_distiller
170 'components.gyp:dom_distiller_content',
171
165 # Dependencies of 172 # Dependencies of
166 # intercept_navigation_resource_throttle_unittest.cc 173 # intercept_navigation_resource_throttle_unittest.cc
167 '../skia/skia.gyp:skia', 174 '../skia/skia.gyp:skia',
168 'components.gyp:navigation_interception', 175 'components.gyp:navigation_interception',
169 176
170 # Dependencies of precache/content 177 # Dependencies of precache/content
171 'components.gyp:precache_content', 178 'components.gyp:precache_content',
172 179
173 # Dependencies of sessions 180 # Dependencies of sessions
174 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 181 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 'dependencies': [ 492 'dependencies': [
486 '../base/allocator/allocator.gyp:allocator', 493 '../base/allocator/allocator.gyp:allocator',
487 ], 494 ],
488 }], 495 }],
489 ], 496 ],
490 }, 497 },
491 ], 498 ],
492 }], 499 }],
493 ], 500 ],
494 } 501 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc ('k') | components/dom_distiller.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698