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

Side by Side Diff: components/components_tests.gyp

Issue 966443002: Add DataReductionProxy IPC to determine if the Data Reduction Proxy was used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bengr CR comments, update OWNERS for IPC messages Created 5 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
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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 ], 478 ],
479 }], 479 }],
480 [ 'cld_version==0 or cld_version==2', { 480 [ 'cld_version==0 or cld_version==2', {
481 'dependencies': [ 481 'dependencies': [
482 # Unit tests should always use statically-linked CLD data. 482 # Unit tests should always use statically-linked CLD data.
483 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], 483 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
484 }], 484 }],
485 ['OS != "ios"', { 485 ['OS != "ios"', {
486 'sources': [ 486 'sources': [
487 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 487 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
488 'data_reduction_proxy/content/browser/data_reduction_proxy_messa ge_filter_unittest.cc',
488 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 489 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
489 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc', 490 'dom_distiller/content/web_contents_main_frame_observer_unittest .cc',
490 'error_page/renderer/net_error_helper_core_unittest.cc', 491 'error_page/renderer/net_error_helper_core_unittest.cc',
491 'metrics/gpu/gpu_metrics_provider_unittest.cc', 492 'metrics/gpu/gpu_metrics_provider_unittest.cc',
492 'network_hints/renderer/dns_prefetch_queue_unittest.cc', 493 'network_hints/renderer/dns_prefetch_queue_unittest.cc',
493 'network_hints/renderer/renderer_dns_prefetch_unittest.cc', 494 'network_hints/renderer/renderer_dns_prefetch_unittest.cc',
494 'password_manager/content/browser/credential_manager_dispatcher_ unittest.cc', 495 'password_manager/content/browser/credential_manager_dispatcher_ unittest.cc',
495 'password_manager/content/common/credential_manager_types_unitte st.cc', 496 'password_manager/content/common/credential_manager_types_unitte st.cc',
496 'power/origin_power_map_unittest.cc', 497 'power/origin_power_map_unittest.cc',
497 ], 498 ],
498 'dependencies': [ 499 'dependencies': [
499 '../skia/skia.gyp:skia', 500 '../skia/skia.gyp:skia',
500 'components.gyp:autofill_content_browser', 501 'components.gyp:autofill_content_browser',
501 'components.gyp:autofill_content_renderer', 502 'components.gyp:autofill_content_renderer',
502 'components.gyp:autofill_content_test_support', 503 'components.gyp:autofill_content_test_support',
504 'components.gyp:data_reduction_proxy_content_browser',
503 'components.gyp:dom_distiller_content', 505 'components.gyp:dom_distiller_content',
504 'components.gyp:error_page_renderer', 506 'components.gyp:error_page_renderer',
505 'components.gyp:history_content_browser', 507 'components.gyp:history_content_browser',
506 'components.gyp:keyed_service_content', 508 'components.gyp:keyed_service_content',
507 'components.gyp:navigation_interception', 509 'components.gyp:navigation_interception',
508 'components.gyp:network_hints_renderer', 510 'components.gyp:network_hints_renderer',
509 'components.gyp:password_manager_content_browser', 511 'components.gyp:password_manager_content_browser',
510 'components.gyp:password_manager_content_common', 512 'components.gyp:password_manager_content_common',
511 'components.gyp:power', 513 'components.gyp:power',
512 'components.gyp:precache_content', 514 'components.gyp:precache_content',
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 '../build/isolate.gypi', 1066 '../build/isolate.gypi',
1065 ], 1067 ],
1066 'sources': [ 1068 'sources': [
1067 'components_unittests.isolate', 1069 'components_unittests.isolate',
1068 ], 1070 ],
1069 }, 1071 },
1070 ], 1072 ],
1071 }], 1073 }],
1072 ], 1074 ],
1073 } 1075 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698