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

Side by Side Diff: components/components_tests.gyp

Issue 2017123002: Adds a base32 component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds back one not-so-unnecessary dep Created 4 years, 6 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service_u nittest.cc', 59 'autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service_u nittest.cc',
60 'autofill/core/browser/webdata/web_data_service_unittest.cc', 60 'autofill/core/browser/webdata/web_data_service_unittest.cc',
61 'autofill/core/common/autofill_l10n_util_unittest.cc', 61 'autofill/core/common/autofill_l10n_util_unittest.cc',
62 'autofill/core/common/autofill_regexes_unittest.cc', 62 'autofill/core/common/autofill_regexes_unittest.cc',
63 'autofill/core/common/autofill_util_unittest.cc', 63 'autofill/core/common/autofill_util_unittest.cc',
64 'autofill/core/common/form_data_unittest.cc', 64 'autofill/core/common/form_data_unittest.cc',
65 'autofill/core/common/form_field_data_unittest.cc', 65 'autofill/core/common/form_field_data_unittest.cc',
66 'autofill/core/common/password_form_fill_data_unittest.cc', 66 'autofill/core/common/password_form_fill_data_unittest.cc',
67 'autofill/core/common/save_password_progress_logger_unittest.cc', 67 'autofill/core/common/save_password_progress_logger_unittest.cc',
68 ], 68 ],
69 'base32_unittest_sources': [
70 'base32/base32_unittest.cc',
71 ],
69 'bookmarks_unittest_sources': [ 72 'bookmarks_unittest_sources': [
70 'bookmarks/browser/bookmark_codec_unittest.cc', 73 'bookmarks/browser/bookmark_codec_unittest.cc',
71 'bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc', 74 'bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc',
72 'bookmarks/browser/bookmark_index_unittest.cc', 75 'bookmarks/browser/bookmark_index_unittest.cc',
73 'bookmarks/browser/bookmark_model_unittest.cc', 76 'bookmarks/browser/bookmark_model_unittest.cc',
74 'bookmarks/browser/bookmark_utils_unittest.cc', 77 'bookmarks/browser/bookmark_utils_unittest.cc',
75 'bookmarks/managed/managed_bookmarks_tracker_unittest.cc', 78 'bookmarks/managed/managed_bookmarks_tracker_unittest.cc',
76 ], 79 ],
77 'browser_sync_unittest_sources': [ 80 'browser_sync_unittest_sources': [
78 'browser_sync/browser/profile_sync_service_autofill_unittest.cc', 81 'browser_sync/browser/profile_sync_service_autofill_unittest.cc',
(...skipping 27 matching lines...) Expand all
106 'cast_certificate/cast_cert_validator_unittest.cc', 109 'cast_certificate/cast_cert_validator_unittest.cc',
107 ], 110 ],
108 'certificate_reporting_unittest_sources': [ 111 'certificate_reporting_unittest_sources': [
109 'certificate_reporting/error_report_unittest.cc', 112 'certificate_reporting/error_report_unittest.cc',
110 'certificate_reporting/error_reporter_unittest.cc', 113 'certificate_reporting/error_reporter_unittest.cc',
111 ], 114 ],
112 'certificate_transparency_unittest_sources': [ 115 'certificate_transparency_unittest_sources': [
113 'certificate_transparency/log_proof_fetcher_unittest.cc', 116 'certificate_transparency/log_proof_fetcher_unittest.cc',
114 'certificate_transparency/single_tree_tracker_unittest.cc', 117 'certificate_transparency/single_tree_tracker_unittest.cc',
115 ], 118 ],
116 'child_trace_message_filter_unittest_sources': [ 119 'child_trace_message_filter_unittest_sources': [
117 'tracing/child_trace_message_filter_unittest.cc', 120 'tracing/child_trace_message_filter_unittest.cc',
118 ], 121 ],
119 'client_update_protocol_unittest_sources': [ 122 'client_update_protocol_unittest_sources': [
120 'client_update_protocol/ecdsa_unittest.cc', 123 'client_update_protocol/ecdsa_unittest.cc',
121 ], 124 ],
122 'cloud_devices_unittest_sources': [ 125 'cloud_devices_unittest_sources': [
123 'cloud_devices/common/cloud_devices_urls_unittest.cc', 126 'cloud_devices/common/cloud_devices_urls_unittest.cc',
124 'cloud_devices/common/printer_description_unittest.cc', 127 'cloud_devices/common/printer_description_unittest.cc',
125 ], 128 ],
126 'component_updater_unittest_sources': [ 129 'component_updater_unittest_sources': [
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 }, 976 },
974 { 977 {
975 # GN version: //components:components_unittests 978 # GN version: //components:components_unittests
976 'target_name': 'components_unittests', 979 'target_name': 'components_unittests',
977 'type': '<(gtest_target_type)', 980 'type': '<(gtest_target_type)',
978 'sources': [ 981 'sources': [
979 'test/run_all_unittests.cc', 982 'test/run_all_unittests.cc',
980 983
981 '<@(auto_login_parser_unittest_sources)', 984 '<@(auto_login_parser_unittest_sources)',
982 '<@(autofill_unittest_sources)', 985 '<@(autofill_unittest_sources)',
986 '<@(base32_unittest_sources)',
983 '<@(bookmarks_unittest_sources)', 987 '<@(bookmarks_unittest_sources)',
984 '<@(browser_sync_unittest_sources)', 988 '<@(browser_sync_unittest_sources)',
985 '<@(browser_watcher_unittest_sources)', 989 '<@(browser_watcher_unittest_sources)',
986 '<@(browsing_data_ui_unittest_sources)', 990 '<@(browsing_data_ui_unittest_sources)',
987 '<@(bubble_unittest_sources)', 991 '<@(bubble_unittest_sources)',
988 '<@(captive_portal_unittest_sources)', 992 '<@(captive_portal_unittest_sources)',
989 '<@(cast_certificate_unittest_sources)', 993 '<@(cast_certificate_unittest_sources)',
990 '<@(certificate_reporting_unittest_sources)', 994 '<@(certificate_reporting_unittest_sources)',
991 '<@(client_update_protocol_unittest_sources)', 995 '<@(client_update_protocol_unittest_sources)',
992 '<@(cloud_devices_unittest_sources)', 996 '<@(cloud_devices_unittest_sources)',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1082 '../ui/gfx/gfx.gyp:gfx', 1086 '../ui/gfx/gfx.gyp:gfx',
1083 '../ui/gfx/gfx.gyp:gfx_test_support', 1087 '../ui/gfx/gfx.gyp:gfx_test_support',
1084 '../ui/resources/ui_resources.gyp:ui_resources', 1088 '../ui/resources/ui_resources.gyp:ui_resources',
1085 '../ui/resources/ui_resources.gyp:ui_test_pak', 1089 '../ui/resources/ui_resources.gyp:ui_test_pak',
1086 '../ui/strings/ui_strings.gyp:ui_strings', 1090 '../ui/strings/ui_strings.gyp:ui_strings',
1087 '../url/url.gyp:url_lib', 1091 '../url/url.gyp:url_lib',
1088 'components.gyp:auto_login_parser', 1092 'components.gyp:auto_login_parser',
1089 'components.gyp:autofill_core_browser', 1093 'components.gyp:autofill_core_browser',
1090 'components.gyp:autofill_core_common', 1094 'components.gyp:autofill_core_common',
1091 'components.gyp:autofill_core_test_support', 1095 'components.gyp:autofill_core_test_support',
1096 'components.gyp:base32',
1092 'components.gyp:bookmarks_browser', 1097 'components.gyp:bookmarks_browser',
1093 'components.gyp:bookmarks_managed', 1098 'components.gyp:bookmarks_managed',
1094 'components.gyp:bookmarks_test_support', 1099 'components.gyp:bookmarks_test_support',
1095 'components.gyp:browser_sync_browser', 1100 'components.gyp:browser_sync_browser',
1096 'components.gyp:browser_sync_browser_test_support', 1101 'components.gyp:browser_sync_browser_test_support',
1097 'components.gyp:browsing_data_ui', 1102 'components.gyp:browsing_data_ui',
1098 'components.gyp:bubble', 1103 'components.gyp:bubble',
1099 'components.gyp:captive_portal_test_support', 1104 'components.gyp:captive_portal_test_support',
1100 'components.gyp:cast_certificate', 1105 'components.gyp:cast_certificate',
1101 'components.gyp:certificate_reporting', 1106 'components.gyp:certificate_reporting',
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
1957 'dependencies': [ 1962 'dependencies': [
1958 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1963 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1959 ], 1964 ],
1960 }], 1965 }],
1961 ], 1966 ],
1962 }, 1967 },
1963 ], 1968 ],
1964 }], 1969 }],
1965 ], 1970 ],
1966 } 1971 }
OLDNEW
« components/base32/base32_unittest.cc ('K') | « components/components.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698