| 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 4289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4300 "../browser/safe_browsing/signature_evaluator_mac_unittest.cc", | 4300 "../browser/safe_browsing/signature_evaluator_mac_unittest.cc", |
| 4301 "../browser/safe_browsing/two_phase_uploader_unittest.cc", | 4301 "../browser/safe_browsing/two_phase_uploader_unittest.cc", |
| 4302 "../common/safe_browsing/binary_feature_extractor_mac_unittest.cc", | 4302 "../common/safe_browsing/binary_feature_extractor_mac_unittest.cc", |
| 4303 "../common/safe_browsing/binary_feature_extractor_unittest.cc", | 4303 "../common/safe_browsing/binary_feature_extractor_unittest.cc", |
| 4304 "../common/safe_browsing/binary_feature_extractor_win_unittest.cc", | 4304 "../common/safe_browsing/binary_feature_extractor_win_unittest.cc", |
| 4305 "../common/safe_browsing/download_protection_util_unittest.cc", | 4305 "../common/safe_browsing/download_protection_util_unittest.cc", |
| 4306 "../common/safe_browsing/ipc_protobuf_message_test_messages.h", | 4306 "../common/safe_browsing/ipc_protobuf_message_test_messages.h", |
| 4307 "../common/safe_browsing/ipc_protobuf_message_unittest.cc", | 4307 "../common/safe_browsing/ipc_protobuf_message_unittest.cc", |
| 4308 "../common/safe_browsing/mach_o_image_reader_mac_unittest.cc", | 4308 "../common/safe_browsing/mach_o_image_reader_mac_unittest.cc", |
| 4309 "../common/safe_browsing/pe_image_reader_win_unittest.cc", | 4309 "../common/safe_browsing/pe_image_reader_win_unittest.cc", |
| 4310 "../renderer/safe_browsing/features_unittest.cc", | |
| 4311 "../renderer/safe_browsing/murmurhash3_util_unittest.cc", | |
| 4312 "../renderer/safe_browsing/phishing_term_feature_extractor_unittest.cc", | |
| 4313 "../renderer/safe_browsing/phishing_url_feature_extractor_unittest.cc", | |
| 4314 "../renderer/safe_browsing/scorer_unittest.cc", | |
| 4315 "../utility/safe_browsing/mac/dmg_test_utils.cc", | 4310 "../utility/safe_browsing/mac/dmg_test_utils.cc", |
| 4316 "../utility/safe_browsing/mac/hfs_unittest.cc", | 4311 "../utility/safe_browsing/mac/hfs_unittest.cc", |
| 4317 "../utility/safe_browsing/mac/read_stream_unittest.cc", | 4312 "../utility/safe_browsing/mac/read_stream_unittest.cc", |
| 4318 "../utility/safe_browsing/mac/udif_unittest.cc", | 4313 "../utility/safe_browsing/mac/udif_unittest.cc", |
| 4319 ] | 4314 ] |
| 4320 deps += [ | 4315 deps += [ |
| 4321 ":test_proto", | 4316 ":test_proto", |
| 4322 "//components/safe_browsing_db:v4_test_util", | 4317 "//components/safe_browsing_db:v4_test_util", |
| 4323 ] | 4318 ] |
| 4324 | 4319 |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5154 } | 5149 } |
| 5155 | 5150 |
| 5156 if (is_win) { | 5151 if (is_win) { |
| 5157 loadable_module("conflicts_dll") { | 5152 loadable_module("conflicts_dll") { |
| 5158 testonly = true | 5153 testonly = true |
| 5159 sources = [ | 5154 sources = [ |
| 5160 "conflicts/conflicts_dll.cc", | 5155 "conflicts/conflicts_dll.cc", |
| 5161 ] | 5156 ] |
| 5162 } | 5157 } |
| 5163 } | 5158 } |
| OLD | NEW |