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

Side by Side Diff: components/components_tests.gyp

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds IPC::ParamTraits<LookupRequest> for validation Created 6 years, 1 month 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 ], 463 ],
464 'conditions': [ 464 'conditions': [
465 ['toolkit_views == 1', { 465 ['toolkit_views == 1', {
466 'sources': [ 466 'sources': [
467 'bookmarks/browser/bookmark_node_data_unittest.cc', 467 'bookmarks/browser/bookmark_node_data_unittest.cc',
468 ], 468 ],
469 }], 469 }],
470 ['OS != "ios"', { 470 ['OS != "ios"', {
471 'sources': [ 471 'sources': [
472 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 472 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
473 'dns_prefetch/renderer/predictor_queue_unittest.cc',
474 'dns_prefetch/renderer/renderer_net_predictor_unittest.cc',
473 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 475 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
474 'error_page/renderer/net_error_helper_core_unittest.cc', 476 'error_page/renderer/net_error_helper_core_unittest.cc',
475 'metrics/gpu/gpu_metrics_provider_unittest.cc', 477 'metrics/gpu/gpu_metrics_provider_unittest.cc',
476 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc', 478 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc',
477 'power/origin_power_map_unittest.cc', 479 'power/origin_power_map_unittest.cc',
478 ], 480 ],
479 'dependencies': [ 481 'dependencies': [
480 # Dependencies of autofill 482 # Dependencies of autofill
481 'components.gyp:autofill_content_browser', 483 'components.gyp:autofill_content_browser',
482 'components.gyp:autofill_content_renderer', 484 'components.gyp:autofill_content_renderer',
483 'components.gyp:autofill_content_test_support', 485 'components.gyp:autofill_content_test_support',
484 486
487 # Dependencies of dns_prefetch
488 'components.gyp:dns_prefetch_renderer',
489
485 # Dependencies of dom_distiller 490 # Dependencies of dom_distiller
486 'components.gyp:dom_distiller_content', 491 'components.gyp:dom_distiller_content',
487 492
488 # Dependencies of error_page 493 # Dependencies of error_page
489 'components.gyp:error_page_renderer', 494 'components.gyp:error_page_renderer',
490 495
491 # Dependencies of 496 # Dependencies of
492 # intercept_navigation_resource_throttle_unittest.cc 497 # intercept_navigation_resource_throttle_unittest.cc
493 '../skia/skia.gyp:skia', 498 '../skia/skia.gyp:skia',
494 'components.gyp:navigation_interception', 499 'components.gyp:navigation_interception',
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 'dependencies': [ 1004 'dependencies': [
1000 '../base/allocator/allocator.gyp:allocator', 1005 '../base/allocator/allocator.gyp:allocator',
1001 ], 1006 ],
1002 }], 1007 }],
1003 ], 1008 ],
1004 }, 1009 },
1005 ], 1010 ],
1006 }], 1011 }],
1007 ], 1012 ],
1008 } 1013 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698