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

Side by Side Diff: components/components_tests.gyp

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding tests and addressing comments Created 6 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
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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 [ 'cld_version==0 or cld_version==2', { 521 [ 'cld_version==0 or cld_version==2', {
522 'dependencies': [ 522 'dependencies': [
523 # Unit tests should always use statically-linked CLD data. 523 # Unit tests should always use statically-linked CLD data.
524 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], 524 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
525 }], 525 }],
526 ['OS != "ios"', { 526 ['OS != "ios"', {
527 'sources': [ 527 'sources': [
528 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 528 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
529 'dns_prefetch/renderer/predictor_queue_unittest.cc', 529 'dns_prefetch/renderer/predictor_queue_unittest.cc',
530 'dns_prefetch/renderer/renderer_net_predictor_unittest.cc', 530 'dns_prefetch/renderer/renderer_net_predictor_unittest.cc',
531 'data_reduction_proxy/content/browser/data_reduction_proxy_resou rce_throttle_unittest.cc',
531 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 532 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
532 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc', 533 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc',
533 'error_page/renderer/net_error_helper_core_unittest.cc', 534 'error_page/renderer/net_error_helper_core_unittest.cc',
534 'metrics/gpu/gpu_metrics_provider_unittest.cc', 535 'metrics/gpu/gpu_metrics_provider_unittest.cc',
535 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc', 536 'password_manager/content/browser/content_credential_manager_dis patcher_unittest.cc',
536 'power/origin_power_map_unittest.cc', 537 'power/origin_power_map_unittest.cc',
537 ], 538 ],
538 'dependencies': [ 539 'dependencies': [
539 # Dependencies of autofill 540 # Dependencies of autofill
540 'components.gyp:autofill_content_browser', 541 'components.gyp:autofill_content_browser',
541 'components.gyp:autofill_content_renderer', 542 'components.gyp:autofill_content_renderer',
542 'components.gyp:autofill_content_test_support', 543 'components.gyp:autofill_content_test_support',
543 544
544 # Dependencies of dns_prefetch 545 # Dependencies of dns_prefetch
545 'components.gyp:dns_prefetch_renderer', 546 'components.gyp:dns_prefetch_renderer',
546 547
548 # Dependencies of data_reduction_proxy
549 'components.gyp:data_reduction_proxy_content',
550
547 # Dependencies of dom_distiller 551 # Dependencies of dom_distiller
548 'components.gyp:dom_distiller_content', 552 'components.gyp:dom_distiller_content',
549 553
550 # Dependencies of error_page 554 # Dependencies of error_page
551 'components.gyp:error_page_renderer', 555 'components.gyp:error_page_renderer',
552 556
553 # Dependencies of 557 # Dependencies of
554 # intercept_navigation_resource_throttle_unittest.cc 558 # intercept_navigation_resource_throttle_unittest.cc
555 '../skia/skia.gyp:skia', 559 '../skia/skia.gyp:skia',
556 'components.gyp:navigation_interception', 560 'components.gyp:navigation_interception',
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 'dependencies': [ 1092 'dependencies': [
1089 '../base/allocator/allocator.gyp:allocator', 1093 '../base/allocator/allocator.gyp:allocator',
1090 ], 1094 ],
1091 }], 1095 }],
1092 ], 1096 ],
1093 }, 1097 },
1094 ], 1098 ],
1095 }], 1099 }],
1096 ], 1100 ],
1097 } 1101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698