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

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 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 21 matching lines...) Expand all
32 'dom_distiller/core/dom_distiller_store_unittest.cc', 32 'dom_distiller/core/dom_distiller_store_unittest.cc',
33 'dom_distiller/core/fake_distiller.cc', 33 'dom_distiller/core/fake_distiller.cc',
34 'dom_distiller/core/fake_distiller.h', 34 'dom_distiller/core/fake_distiller.h',
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 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 39 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
40 'precache/core/precache_fetcher_unittest.cc', 40 'precache/core/precache_fetcher_unittest.cc',
41 'sessions/serialized_navigation_entry_unittest.cc', 41 'sessions/serialized_navigation_entry_unittest.cc',
42 'rappor/bloom_filter_unittest.cc',
43 'rappor/bytevector_unittest.cc',
44 'rappor/rappor_unittest.cc',
45 'rappor/rappor_recorder_unittest.cc',
46 'rappor/rappor_reporter_unittest.cc',
47 'rappor/rappor_service_unittest.cc',
42 'test/run_all_unittests.cc', 48 'test/run_all_unittests.cc',
43 'translate/common/translate_metrics_unittest.cc', 49 'translate/common/translate_metrics_unittest.cc',
44 'translate/common/translate_util_unittest.cc', 50 'translate/common/translate_util_unittest.cc',
45 'translate/language_detection/language_detection_util_unittest.cc', 51 'translate/language_detection/language_detection_util_unittest.cc',
46 # TODO(asvitkine): These should be tested on iOS too. 52 # TODO(asvitkine): These should be tested on iOS too.
47 'variations/entropy_provider_unittest.cc', 53 'variations/entropy_provider_unittest.cc',
48 'variations/metrics_util_unittest.cc', 54 'variations/metrics_util_unittest.cc',
49 'variations/variations_associated_data_unittest.cc', 55 'variations/variations_associated_data_unittest.cc',
50 'variations/variations_seed_processor_unittest.cc', 56 'variations/variations_seed_processor_unittest.cc',
51 'visitedlink/test/visitedlink_unittest.cc', 57 'visitedlink/test/visitedlink_unittest.cc',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 '../skia/skia.gyp:skia', 94 '../skia/skia.gyp:skia',
89 'components.gyp:navigation_interception', 95 'components.gyp:navigation_interception',
90 96
91 # Dependencies of policy 97 # Dependencies of policy
92 'components.gyp:policy_component', 98 'components.gyp:policy_component',
93 99
94 # Dependencies of precache 100 # Dependencies of precache
95 'components.gyp:precache_core', 101 'components.gyp:precache_core',
96 'components.gyp:precache_core_proto', 102 'components.gyp:precache_core_proto',
97 103
104 # Dependencies of rappor
105 'components.gyp:rappor',
106
98 # Dependencies of sessions 107 # Dependencies of sessions
99 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 108 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
100 'components.gyp:sessions', 109 'components.gyp:sessions',
101 'components.gyp:sessions_test_support', 110 'components.gyp:sessions_test_support',
102 111
103 # Dependencies of translate. 112 # Dependencies of translate.
104 'components.gyp:translate_common', 113 'components.gyp:translate_common',
105 'components.gyp:translate_language_detection', 114 'components.gyp:translate_language_detection',
106 115
107 # Dependencies of variations 116 # Dependencies of variations
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'dependencies': [ 311 'dependencies': [
303 '../base/allocator/allocator.gyp:allocator', 312 '../base/allocator/allocator.gyp:allocator',
304 ], 313 ],
305 }], 314 }],
306 ], 315 ],
307 }, 316 },
308 ], 317 ],
309 }], 318 }],
310 ], 319 ],
311 } 320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698