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 4221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4232 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc", | 4232 "../browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc", |
4233 "../browser/printing/cloud_print/privet_http_unittest.cc", | 4233 "../browser/printing/cloud_print/privet_http_unittest.cc", |
4234 "../browser/printing/cloud_print/privet_notifications_unittest.cc", | 4234 "../browser/printing/cloud_print/privet_notifications_unittest.cc", |
4235 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc", | 4235 "../browser/printing/cloud_print/privet_url_fetcher_unittest.cc", |
4236 ] | 4236 ] |
4237 } | 4237 } |
4238 | 4238 |
4239 if (safe_browsing_mode > 0) { | 4239 if (safe_browsing_mode > 0) { |
4240 sources += [ | 4240 sources += [ |
4241 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", | 4241 "../browser/safe_browsing/certificate_reporting_service_unittest.cc", |
4242 "../browser/safe_browsing/ping_manager_unittest.cc", | |
4243 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", | 4242 "../browser/safe_browsing/safe_browsing_blocking_page_unittest.cc", |
4244 "../browser/safe_browsing/threat_details_unittest.cc", | 4243 "../browser/safe_browsing/threat_details_unittest.cc", |
4245 "../browser/safe_browsing/ui_manager_unittest.cc", | 4244 "../browser/safe_browsing/ui_manager_unittest.cc", |
4246 "../common/safe_browsing/file_type_policies_test_util.cc", | 4245 "../common/safe_browsing/file_type_policies_test_util.cc", |
4247 "../common/safe_browsing/file_type_policies_test_util.h", | 4246 "../common/safe_browsing/file_type_policies_test_util.h", |
4248 "../common/safe_browsing/file_type_policies_unittest.cc", | 4247 "../common/safe_browsing/file_type_policies_unittest.cc", |
4249 ] | 4248 ] |
4250 } | 4249 } |
4251 if (safe_browsing_mode == 1) { | 4250 if (safe_browsing_mode == 1) { |
4252 # TODO(sgurun): enable tests for safe_browsing==2. | 4251 # TODO(sgurun): enable tests for safe_browsing==2. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4313 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", | 4312 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", |
4314 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", | 4313 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", |
4315 "../renderer/safe_browsing/scorer_unittest.cc", | 4314 "../renderer/safe_browsing/scorer_unittest.cc", |
4316 "../utility/safe_browsing/mac/dmg_test_utils.cc", | 4315 "../utility/safe_browsing/mac/dmg_test_utils.cc", |
4317 "../utility/safe_browsing/mac/hfs_unittest.cc", | 4316 "../utility/safe_browsing/mac/hfs_unittest.cc", |
4318 "../utility/safe_browsing/mac/read_stream_unittest.cc", | 4317 "../utility/safe_browsing/mac/read_stream_unittest.cc", |
4319 "../utility/safe_browsing/mac/udif_unittest.cc", | 4318 "../utility/safe_browsing/mac/udif_unittest.cc", |
4320 ] | 4319 ] |
4321 deps += [ | 4320 deps += [ |
4322 ":test_proto", | 4321 ":test_proto", |
| 4322 "//components/safe_browsing:base_ping_manager_unittest", |
4323 "//components/safe_browsing_db:v4_test_util", | 4323 "//components/safe_browsing_db:v4_test_util", |
4324 ] | 4324 ] |
4325 | 4325 |
4326 if (is_mac) { | 4326 if (is_mac) { |
4327 deps += [ ":mac_safe_browsing_test_data" ] | 4327 deps += [ ":mac_safe_browsing_test_data" ] |
4328 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] | 4328 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] |
4329 } | 4329 } |
4330 } | 4330 } |
4331 | 4331 |
4332 if (enable_plugins) { | 4332 if (enable_plugins) { |
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5172 } | 5172 } |
5173 | 5173 |
5174 if (is_win) { | 5174 if (is_win) { |
5175 loadable_module("conflicts_dll") { | 5175 loadable_module("conflicts_dll") { |
5176 testonly = true | 5176 testonly = true |
5177 sources = [ | 5177 sources = [ |
5178 "conflicts/conflicts_dll.cc", | 5178 "conflicts/conflicts_dll.cc", |
5179 ] | 5179 ] |
5180 } | 5180 } |
5181 } | 5181 } |
OLD | NEW |