OLD | NEW |
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 4226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4237 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc", | 4237 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc", |
4238 "../browser/printing/cloud_print/privet_http_unittest.cc", | 4238 "../browser/printing/cloud_print/privet_http_unittest.cc", |
4239 "../browser/printing/cloud_print/privet_notifications_unittest.cc", | 4239 "../browser/printing/cloud_print/privet_notifications_unittest.cc", |
4240 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc", | 4240 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc", |
4241 ] | 4241 ] |
4242 } | 4242 } |
4243 | 4243 |
4244 if (safe_browsing_mode > 0) { | 4244 if (safe_browsing_mode > 0) { |
4245 sources += [ | 4245 sources += [ |
4246 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", | 4246 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", |
4247 "../browser/safe_browsing/ping_manager_unittest.cc", | |
4248 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", | 4247 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", |
4249 "../browser/safe_browsing/threat_details_unittest.cc", | 4248 "../browser/safe_browsing/threat_details_unittest.cc", |
4250 "../browser/safe_browsing/ui_manager_unittest.cc", | 4249 "../browser/safe_browsing/ui_manager_unittest.cc", |
4251 "../common/safe_browsing/file_type_policies_test_util.cc", | 4250 "../common/safe_browsing/file_type_policies_test_util.cc", |
4252 "../common/safe_browsing/file_type_policies_test_util.h", | 4251 "../common/safe_browsing/file_type_policies_test_util.h", |
4253 "../common/safe_browsing/file_type_policies_unittest.cc", | 4252 "../common/safe_browsing/file_type_policies_unittest.cc", |
4254 ] | 4253 ] |
4255 } | 4254 } |
4256 if (safe_browsing_mode == 1) { | 4255 if (safe_browsing_mode == 1) { |
4257 # TODO(sgurun): enable tests for safe_browsing==2. | 4256 # TODO(sgurun): enable tests for safe_browsing==2. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4318 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", | 4317 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", |
4319 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", | 4318 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", |
4320 "../renderer/safe_browsing/scorer_unittest.cc", | 4319 "../renderer/safe_browsing/scorer_unittest.cc", |
4321 "../utility/safe_browsing/mac/dmg_test_utils.cc", | 4320 "../utility/safe_browsing/mac/dmg_test_utils.cc", |
4322 "../utility/safe_browsing/mac/hfs_unittest.cc", | 4321 "../utility/safe_browsing/mac/hfs_unittest.cc", |
4323 "../utility/safe_browsing/mac/read_stream_unittest.cc", | 4322 "../utility/safe_browsing/mac/read_stream_unittest.cc", |
4324 "../utility/safe_browsing/mac/udif_unittest.cc", | 4323 "../utility/safe_browsing/mac/udif_unittest.cc", |
4325 ] | 4324 ] |
4326 deps += [ | 4325 deps += [ |
4327 ":test_proto", | 4326 ":test_proto", |
| 4327 "//components/safe_browsing:base_ping_manager_unittest", |
4328 "//components/safe_browsing_db:v4_test_util", | 4328 "//components/safe_browsing_db:v4_test_util", |
4329 ] | 4329 ] |
4330 | 4330 |
4331 if (is_mac) { | 4331 if (is_mac) { |
4332 deps += [ ":mac_safe_browsing_test_data" ] | 4332 deps += [ ":mac_safe_browsing_test_data" ] |
4333 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] | 4333 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] |
4334 } | 4334 } |
4335 } | 4335 } |
4336 | 4336 |
4337 if (enable_plugins) { | 4337 if (enable_plugins) { |
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5160 } | 5160 } |
5161 | 5161 |
5162 if (is_win) { | 5162 if (is_win) { |
5163 loadable_module("conflicts_dll") { | 5163 loadable_module("conflicts_dll") { |
5164 testonly = true | 5164 testonly = true |
5165 sources = [ | 5165 sources = [ |
5166 "conflicts/conflicts_dll.cc", | 5166 "conflicts/conflicts_dll.cc", |
5167 ] | 5167 ] |
5168 } | 5168 } |
5169 } | 5169 } |
OLD | NEW |