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