Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Side by Side Diff: content/test/BUILD.gn

Issue 2817453002: Bring back the URLLoader from the old Mandoline network service. (Closed)
Patch Set: fix analyze Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 "../common/quarantine/quarantine_mac_unittest.mm", 1381 "../common/quarantine/quarantine_mac_unittest.mm",
1382 "../common/quarantine/quarantine_win_unittest.cc", 1382 "../common/quarantine/quarantine_win_unittest.cc",
1383 "../common/sandbox_mac_diraccess_unittest.mm", 1383 "../common/sandbox_mac_diraccess_unittest.mm",
1384 "../common/sandbox_mac_fontloading_unittest.mm", 1384 "../common/sandbox_mac_fontloading_unittest.mm",
1385 "../common/sandbox_mac_system_access_unittest.mm", 1385 "../common/sandbox_mac_system_access_unittest.mm",
1386 "../common/sandbox_mac_unittest_helper.h", 1386 "../common/sandbox_mac_unittest_helper.h",
1387 "../common/sandbox_mac_unittest_helper.mm", 1387 "../common/sandbox_mac_unittest_helper.mm",
1388 "../common/service_manager/service_manager_connection_impl_unittest.cc", 1388 "../common/service_manager/service_manager_connection_impl_unittest.cc",
1389 "../common/service_worker/service_worker_utils_unittest.cc", 1389 "../common/service_worker/service_worker_utils_unittest.cc",
1390 "../common/webplugininfo_unittest.cc", 1390 "../common/webplugininfo_unittest.cc",
1391 "../network/url_loader_unittest.cc",
1391 "../public/test/referrer_unittest.cc", 1392 "../public/test/referrer_unittest.cc",
1392 "../renderer/android/disambiguation_popup_helper_unittest.cc", 1393 "../renderer/android/disambiguation_popup_helper_unittest.cc",
1393 "../renderer/bmp_image_decoder_unittest.cc", 1394 "../renderer/bmp_image_decoder_unittest.cc",
1394 "../renderer/categorized_worker_pool_unittest.cc", 1395 "../renderer/categorized_worker_pool_unittest.cc",
1395 "../renderer/device_sensors/device_light_event_pump_unittest.cc", 1396 "../renderer/device_sensors/device_light_event_pump_unittest.cc",
1396 "../renderer/device_sensors/device_motion_event_pump_unittest.cc", 1397 "../renderer/device_sensors/device_motion_event_pump_unittest.cc",
1397 "../renderer/device_sensors/device_orientation_event_pump_unittest.cc", 1398 "../renderer/device_sensors/device_orientation_event_pump_unittest.cc",
1398 "../renderer/dom_storage/dom_storage_cached_area_unittest.cc", 1399 "../renderer/dom_storage/dom_storage_cached_area_unittest.cc",
1399 "../renderer/gpu/compositor_forwarding_message_filter_unittest.cc", 1400 "../renderer/gpu/compositor_forwarding_message_filter_unittest.cc",
1400 "../renderer/gpu/frame_swap_message_queue_unittest.cc", 1401 "../renderer/gpu/frame_swap_message_queue_unittest.cc",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 "//content:resources", 1476 "//content:resources",
1476 "//content/app:both_for_content_tests", 1477 "//content/app:both_for_content_tests",
1477 "//content/browser:for_content_tests", 1478 "//content/browser:for_content_tests",
1478 "//content/browser/cache_storage:cache_storage_proto", 1479 "//content/browser/cache_storage:cache_storage_proto",
1479 "//content/browser/dom_storage:local_storage_proto", 1480 "//content/browser/dom_storage:local_storage_proto",
1480 "//content/browser/notifications:notification_proto", 1481 "//content/browser/notifications:notification_proto",
1481 "//content/browser/service_worker:service_worker_proto", 1482 "//content/browser/service_worker:service_worker_proto",
1482 "//content/browser/speech/proto", 1483 "//content/browser/speech/proto",
1483 "//content/child:for_content_tests", 1484 "//content/child:for_content_tests",
1484 "//content/gpu", 1485 "//content/gpu",
1486 "//content/network",
1485 "//content/public/browser", 1487 "//content/public/browser",
1486 "//content/public/child", 1488 "//content/public/child",
1487 "//content/public/common", 1489 "//content/public/common",
1488 "//content/public/common:service_names", 1490 "//content/public/common:service_names",
1489 "//content/public/renderer", 1491 "//content/public/renderer",
1490 "//content/renderer:for_content_tests", 1492 "//content/renderer:for_content_tests",
1491 "//crypto", 1493 "//crypto",
1492 "//device/battery", 1494 "//device/battery",
1493 "//device/battery:mojo_bindings", 1495 "//device/battery:mojo_bindings",
1494 "//device/bluetooth", 1496 "//device/bluetooth",
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1854 if (is_android) { 1856 if (is_android) {
1855 deps += [ "//testing/android/native_test:native_test_native_code" ] 1857 deps += [ "//testing/android/native_test:native_test_native_code" ]
1856 } 1858 }
1857 } 1859 }
1858 1860
1859 group("fuzzers") { 1861 group("fuzzers") {
1860 deps = [ 1862 deps = [
1861 "//content/test/fuzzer", 1863 "//content/test/fuzzer",
1862 ] 1864 ]
1863 } 1865 }
OLDNEW
« content/network/url_loader_unittest.cc ('K') | « content/network/url_loader_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698