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

Side by Side Diff: components/components_tests.gyp

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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
« no previous file with comments | « components/components.gyp ('k') | components/metrics.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 19 matching lines...) Expand all
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 'json_schema/json_schema_validator_unittest.cc', 36 'json_schema/json_schema_validator_unittest.cc',
37 'json_schema/json_schema_validator_unittest_base.cc', 37 'json_schema/json_schema_validator_unittest_base.cc',
38 'json_schema/json_schema_validator_unittest_base.h', 38 'json_schema/json_schema_validator_unittest_base.h',
39 'language_usage_metrics/language_usage_metrics_unittest.cc', 39 'language_usage_metrics/language_usage_metrics_unittest.cc',
40 'metrics/metrics_hashes_unittest.cc',
40 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 41 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
41 'password_manager/core/browser/login_database_unittest.cc', 42 'password_manager/core/browser/login_database_unittest.cc',
42 'password_manager/core/browser/psl_matching_helper_unittest.cc', 43 'password_manager/core/browser/psl_matching_helper_unittest.cc',
43 'precache/content/precache_manager_unittest.cc', 44 'precache/content/precache_manager_unittest.cc',
44 'precache/core/precache_database_unittest.cc', 45 'precache/core/precache_database_unittest.cc',
45 'precache/core/precache_fetcher_unittest.cc', 46 'precache/core/precache_fetcher_unittest.cc',
46 'precache/core/precache_url_table_unittest.cc', 47 'precache/core/precache_url_table_unittest.cc',
48 'rappor/bloom_filter_unittest.cc',
49 'rappor/byte_vector_utils_unittest.cc',
50 'rappor/log_uploader_unittest.cc',
51 'rappor/rappor_metric_unittest.cc',
52 'rappor/rappor_service_unittest.cc',
47 'sessions/serialized_navigation_entry_unittest.cc', 53 'sessions/serialized_navigation_entry_unittest.cc',
48 'signin/core/webdata/token_service_table_unittest.cc', 54 'signin/core/webdata/token_service_table_unittest.cc',
49 'sync_driver/model_association_manager_unittest.cc', 55 'sync_driver/model_association_manager_unittest.cc',
50 'test/run_all_unittests.cc', 56 'test/run_all_unittests.cc',
51 'translate/core/browser/language_state_unittest.cc', 57 'translate/core/browser/language_state_unittest.cc',
52 'translate/core/browser/translate_browser_metrics_unittest.cc', 58 'translate/core/browser/translate_browser_metrics_unittest.cc',
53 'translate/core/browser/translate_prefs_unittest.cc', 59 'translate/core/browser/translate_prefs_unittest.cc',
54 'translate/core/browser/translate_script_unittest.cc', 60 'translate/core/browser/translate_script_unittest.cc',
55 'translate/core/common/translate_metrics_unittest.cc', 61 'translate/core/common/translate_metrics_unittest.cc',
56 'translate/core/common/translate_util_unittest.cc', 62 'translate/core/common/translate_util_unittest.cc',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'components.gyp:language_usage_metrics', 119 'components.gyp:language_usage_metrics',
114 120
115 # Dependencies of password_manager 121 # Dependencies of password_manager
116 'components.gyp:password_manager_core_browser', 122 'components.gyp:password_manager_core_browser',
117 'components.gyp:password_manager_core_browser_test_support', 123 'components.gyp:password_manager_core_browser_test_support',
118 124
119 # Dependencies of precache/core 125 # Dependencies of precache/core
120 'components.gyp:password_manager_core_browser', 126 'components.gyp:password_manager_core_browser',
121 'components.gyp:precache_core', 127 'components.gyp:precache_core',
122 128
129 # Dependencies of rappor
130 'components.gyp:rappor',
131
123 # Dependencies of signin 132 # Dependencies of signin
124 'components.gyp:signin_core', 133 'components.gyp:signin_core',
125 134
126 # Dependencies of sync_driver 135 # Dependencies of sync_driver
127 'components.gyp:sync_driver_test_support', 136 'components.gyp:sync_driver_test_support',
128 137
129 # Dependencies of translate. 138 # Dependencies of translate.
130 'components.gyp:translate_core_browser', 139 'components.gyp:translate_core_browser',
131 'components.gyp:translate_core_common', 140 'components.gyp:translate_core_common',
132 'components.gyp:translate_language_detection', 141 'components.gyp:translate_language_detection',
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 'dependencies': [ 443 'dependencies': [
435 '../base/allocator/allocator.gyp:allocator', 444 '../base/allocator/allocator.gyp:allocator',
436 ], 445 ],
437 }], 446 }],
438 ], 447 ],
439 }, 448 },
440 ], 449 ],
441 }], 450 }],
442 ], 451 ],
443 } 452 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/metrics.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698