| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 4211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4222 | 4222 |
| 4223 # Use a static library here because many test binaries depend on this but don't | 4223 # Use a static library here because many test binaries depend on this but don't |
| 4224 # require many files from it. This makes linking more efficient. | 4224 # require many files from it. This makes linking more efficient. |
| 4225 static_library("test_support") { | 4225 static_library("test_support") { |
| 4226 testonly = true | 4226 testonly = true |
| 4227 | 4227 |
| 4228 # Always include this via the main test support target. | 4228 # Always include this via the main test support target. |
| 4229 visibility = [ "//chrome/test:test_support" ] | 4229 visibility = [ "//chrome/test:test_support" ] |
| 4230 | 4230 |
| 4231 sources = [ | 4231 sources = [ |
| 4232 "browsing_data/browsing_data_remover_mock.cc", |
| 4233 "browsing_data/browsing_data_remover_mock.h", |
| 4232 "browsing_data/mock_browsing_data_appcache_helper.cc", | 4234 "browsing_data/mock_browsing_data_appcache_helper.cc", |
| 4233 "browsing_data/mock_browsing_data_appcache_helper.h", | 4235 "browsing_data/mock_browsing_data_appcache_helper.h", |
| 4234 "browsing_data/mock_browsing_data_cache_storage_helper.cc", | 4236 "browsing_data/mock_browsing_data_cache_storage_helper.cc", |
| 4235 "browsing_data/mock_browsing_data_cache_storage_helper.h", | 4237 "browsing_data/mock_browsing_data_cache_storage_helper.h", |
| 4236 "browsing_data/mock_browsing_data_channel_id_helper.cc", | 4238 "browsing_data/mock_browsing_data_channel_id_helper.cc", |
| 4237 "browsing_data/mock_browsing_data_channel_id_helper.h", | 4239 "browsing_data/mock_browsing_data_channel_id_helper.h", |
| 4238 "browsing_data/mock_browsing_data_cookie_helper.cc", | 4240 "browsing_data/mock_browsing_data_cookie_helper.cc", |
| 4239 "browsing_data/mock_browsing_data_cookie_helper.h", | 4241 "browsing_data/mock_browsing_data_cookie_helper.h", |
| 4240 "browsing_data/mock_browsing_data_database_helper.cc", | 4242 "browsing_data/mock_browsing_data_database_helper.cc", |
| 4241 "browsing_data/mock_browsing_data_database_helper.h", | 4243 "browsing_data/mock_browsing_data_database_helper.h", |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4537 "media/pepper_cdm_test_constants.cc", | 4539 "media/pepper_cdm_test_constants.cc", |
| 4538 "media/pepper_cdm_test_constants.h", | 4540 "media/pepper_cdm_test_constants.h", |
| 4539 ] | 4541 ] |
| 4540 } | 4542 } |
| 4541 } | 4543 } |
| 4542 | 4544 |
| 4543 service_manifest("preferences_manifest") { | 4545 service_manifest("preferences_manifest") { |
| 4544 name = "preferences" | 4546 name = "preferences" |
| 4545 source = "prefs/preferences_manifest.json" | 4547 source = "prefs/preferences_manifest.json" |
| 4546 } | 4548 } |
| OLD | NEW |