| 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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 # In GYP this is part of test_support_common. | 981 # In GYP this is part of test_support_common. |
| 982 source_set("test_support") { | 982 source_set("test_support") { |
| 983 testonly = true | 983 testonly = true |
| 984 | 984 |
| 985 # Always include this via the main test support target. | 985 # Always include this via the main test support target. |
| 986 visibility = [ "//chrome/test:test_support" ] | 986 visibility = [ "//chrome/test:test_support" ] |
| 987 | 987 |
| 988 sources = [ | 988 sources = [ |
| 989 "browsing_data/mock_browsing_data_appcache_helper.cc", | 989 "browsing_data/mock_browsing_data_appcache_helper.cc", |
| 990 "browsing_data/mock_browsing_data_appcache_helper.h", | 990 "browsing_data/mock_browsing_data_appcache_helper.h", |
| 991 "browsing_data/mock_browsing_data_cache_storage_helper.cc", |
| 992 "browsing_data/mock_browsing_data_cache_storage_helper.h", |
| 991 "browsing_data/mock_browsing_data_channel_id_helper.cc", | 993 "browsing_data/mock_browsing_data_channel_id_helper.cc", |
| 992 "browsing_data/mock_browsing_data_channel_id_helper.h", | 994 "browsing_data/mock_browsing_data_channel_id_helper.h", |
| 993 "browsing_data/mock_browsing_data_cookie_helper.cc", | 995 "browsing_data/mock_browsing_data_cookie_helper.cc", |
| 994 "browsing_data/mock_browsing_data_cookie_helper.h", | 996 "browsing_data/mock_browsing_data_cookie_helper.h", |
| 995 "browsing_data/mock_browsing_data_database_helper.cc", | 997 "browsing_data/mock_browsing_data_database_helper.cc", |
| 996 "browsing_data/mock_browsing_data_database_helper.h", | 998 "browsing_data/mock_browsing_data_database_helper.h", |
| 997 "browsing_data/mock_browsing_data_file_system_helper.cc", | 999 "browsing_data/mock_browsing_data_file_system_helper.cc", |
| 998 "browsing_data/mock_browsing_data_file_system_helper.h", | 1000 "browsing_data/mock_browsing_data_file_system_helper.h", |
| 999 "browsing_data/mock_browsing_data_flash_lso_helper.cc", | 1001 "browsing_data/mock_browsing_data_flash_lso_helper.cc", |
| 1000 "browsing_data/mock_browsing_data_flash_lso_helper.h", | 1002 "browsing_data/mock_browsing_data_flash_lso_helper.h", |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1234 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1233 deps = [ | 1235 deps = [ |
| 1234 "//components/google/core/browser", | 1236 "//components/google/core/browser", |
| 1235 "//components/omnibox/browser", | 1237 "//components/omnibox/browser", |
| 1236 "//components/rlz", | 1238 "//components/rlz", |
| 1237 "//components/search_engines", | 1239 "//components/search_engines", |
| 1238 "//rlz:rlz_lib", | 1240 "//rlz:rlz_lib", |
| 1239 ] | 1241 ] |
| 1240 } | 1242 } |
| 1241 } | 1243 } |
| OLD | NEW |