| 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 4273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4284 "../renderer/safe_browsing/scorer_unittest.cc", | 4284 "../renderer/safe_browsing/scorer_unittest.cc", |
| 4285 "../utility/safe_browsing/mac/dmg_test_utils.cc", | 4285 "../utility/safe_browsing/mac/dmg_test_utils.cc", |
| 4286 "../utility/safe_browsing/mac/dmg_test_utils.h", | 4286 "../utility/safe_browsing/mac/dmg_test_utils.h", |
| 4287 "../utility/safe_browsing/mac/hfs_unittest.cc", | 4287 "../utility/safe_browsing/mac/hfs_unittest.cc", |
| 4288 "../utility/safe_browsing/mac/read_stream_unittest.cc", | 4288 "../utility/safe_browsing/mac/read_stream_unittest.cc", |
| 4289 "../utility/safe_browsing/mac/udif_unittest.cc", | 4289 "../utility/safe_browsing/mac/udif_unittest.cc", |
| 4290 ] | 4290 ] |
| 4291 deps += [ | 4291 deps += [ |
| 4292 ":test_proto", | 4292 ":test_proto", |
| 4293 "//components/safe_browsing:base_ping_manager_unittest", | 4293 "//components/safe_browsing:base_ping_manager_unittest", |
| 4294 "//components/safe_browsing:request_checker_unittest", |
| 4294 "//components/safe_browsing_db:v4_test_util", | 4295 "//components/safe_browsing_db:v4_test_util", |
| 4295 ] | 4296 ] |
| 4296 | 4297 |
| 4297 if (is_mac) { | 4298 if (is_mac) { |
| 4298 deps += [ ":mac_safe_browsing_test_data" ] | 4299 deps += [ ":mac_safe_browsing_test_data" ] |
| 4299 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] | 4300 data += [ "$root_out_dir/test_data/chrome/safe_browsing_dmg/" ] |
| 4300 } | 4301 } |
| 4301 } | 4302 } |
| 4302 | 4303 |
| 4303 if (enable_plugins) { | 4304 if (enable_plugins) { |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5124 } | 5125 } |
| 5125 | 5126 |
| 5126 if (is_win) { | 5127 if (is_win) { |
| 5127 loadable_module("conflicts_dll") { | 5128 loadable_module("conflicts_dll") { |
| 5128 testonly = true | 5129 testonly = true |
| 5129 sources = [ | 5130 sources = [ |
| 5130 "conflicts/conflicts_dll.cc", | 5131 "conflicts/conflicts_dll.cc", |
| 5131 ] | 5132 ] |
| 5132 } | 5133 } |
| 5133 } | 5134 } |
| OLD | NEW |