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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2650973005: Componentize ping_manager (Closed)
Patch Set: rebase Created 3 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
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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 4229 matching lines...) Expand 10 before | Expand all | Expand 10 after
4240 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc", 4240 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc",
4241 "../browser/printing/cloud_print/privet_http_unittest.cc", 4241 "../browser/printing/cloud_print/privet_http_unittest.cc",
4242 "../browser/printing/cloud_print/privet_notifications_unittest.cc", 4242 "../browser/printing/cloud_print/privet_notifications_unittest.cc",
4243 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc", 4243 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc",
4244 ] 4244 ]
4245 } 4245 }
4246 4246
4247 if (safe_browsing_mode > 0) { 4247 if (safe_browsing_mode > 0) {
4248 sources += [ 4248 sources += [
4249 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", 4249 "../browser/safe_browsing/certificate_reporting_service_unittest.cc",
4250 "../browser/safe_browsing/ping_manager_unittest.cc",
4251 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", 4250 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc",
4252 "../browser/safe_browsing/threat_details_unittest.cc", 4251 "../browser/safe_browsing/threat_details_unittest.cc",
4253 "../browser/safe_browsing/ui_manager_unittest.cc", 4252 "../browser/safe_browsing/ui_manager_unittest.cc",
4254 "../common/safe_browsing/file_type_policies_test_util.cc", 4253 "../common/safe_browsing/file_type_policies_test_util.cc",
4255 "../common/safe_browsing/file_type_policies_test_util.h", 4254 "../common/safe_browsing/file_type_policies_test_util.h",
4256 "../common/safe_browsing/file_type_policies_unittest.cc", 4255 "../common/safe_browsing/file_type_policies_unittest.cc",
4257 ] 4256 ]
4258 } 4257 }
4259 if (safe_browsing_mode == 1) { 4258 if (safe_browsing_mode == 1) {
4260 # TODO(sgurun): enable tests for safe_browsing==2. 4259 # TODO(sgurun): enable tests for safe_browsing==2.
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
4321 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", 4320 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc",
4322 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", 4321 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc",
4323 "../renderer/safe_browsing/scorer_unittest.cc", 4322 "../renderer/safe_browsing/scorer_unittest.cc",
4324 "../utility/safe_browsing/mac/dmg_test_utils.cc", 4323 "../utility/safe_browsing/mac/dmg_test_utils.cc",
4325 "../utility/safe_browsing/mac/hfs_unittest.cc", 4324 "../utility/safe_browsing/mac/hfs_unittest.cc",
4326 "../utility/safe_browsing/mac/read_stream_unittest.cc", 4325 "../utility/safe_browsing/mac/read_stream_unittest.cc",
4327 "../utility/safe_browsing/mac/udif_unittest.cc", 4326 "../utility/safe_browsing/mac/udif_unittest.cc",
4328 ] 4327 ]
4329 deps += [ 4328 deps += [
4330 ":test_proto", 4329 ":test_proto",
4330 "//components/safe_browsing:base_ping_manager_unittest",
4331 "//components/safe_browsing_db:v4_test_util", 4331 "//components/safe_browsing_db:v4_test_util",
4332 ] 4332 ]
4333 4333
4334 if (is_mac) { 4334 if (is_mac) {
4335 deps += [ ":mac_safe_browsing_test_data" ] 4335 deps += [ ":mac_safe_browsing_test_data" ]
4336 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] 4336 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ]
4337 } 4337 }
4338 } 4338 }
4339 4339
4340 if (enable_plugins) { 4340 if (enable_plugins) {
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
5188 } 5188 }
5189 5189
5190 if (is_win) { 5190 if (is_win) {
5191 loadable_module("conflicts_dll") { 5191 loadable_module("conflicts_dll") {
5192 testonly = true 5192 testonly = true
5193 sources = [ 5193 sources = [
5194 "conflicts/conflicts_dll.cc", 5194 "conflicts/conflicts_dll.cc",
5195 ] 5195 ]
5196 } 5196 }
5197 } 5197 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/test_safe_browsing_service.h ('k') | components/safe_browsing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698