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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 ] 1452 ]
1453 deps = [ 1453 deps = [
1454 ":blink_common", 1454 ":blink_common",
1455 "//cc/surfaces:surfaces", 1455 "//cc/surfaces:surfaces",
1456 "//components/link_header_util:link_header_util", 1456 "//components/link_header_util:link_header_util",
1457 "//components/mime_util:mime_util", 1457 "//components/mime_util:mime_util",
1458 "//device/base/synchronization", 1458 "//device/base/synchronization",
1459 "//mojo/public/cpp/bindings", 1459 "//mojo/public/cpp/bindings",
1460 "//mojo/public/cpp/bindings:wtf_support", 1460 "//mojo/public/cpp/bindings:wtf_support",
1461 "//third_party/WebKit/Source/platform/heap", 1461 "//third_party/WebKit/Source/platform/heap",
1462 "//third_party/WebKit/Source/platform/loader",
kinuko 2017/01/16 05:25:09 Would you be able to first just move all the files
Takashi Toyoshima 2017/01/17 13:51:48 Thanks. Since now brettw@ says this is straightfor
1462 "//third_party/WebKit/public:mojo_bindings_blink", 1463 "//third_party/WebKit/public:mojo_bindings_blink",
1463 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings_blink", 1464 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings_blink",
1464 "//third_party/ced", 1465 "//third_party/ced",
1465 "//third_party/harfbuzz-ng", 1466 "//third_party/harfbuzz-ng",
1466 "//third_party/icu", 1467 "//third_party/icu",
1467 "//ui/gfx", 1468 "//ui/gfx",
1468 "//ui/gfx/geometry", 1469 "//ui/gfx/geometry",
1469 ] 1470 ]
1470 1471
1471 if (is_mac) { 1472 if (is_mac) {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 configs -= [ "//build/config/compiler:default_symbols" ] 1580 configs -= [ "//build/config/compiler:default_symbols" ]
1580 configs += [ "//build/config/compiler:no_symbols" ] 1581 configs += [ "//build/config/compiler:no_symbols" ]
1581 } 1582 }
1582 } 1583 }
1583 1584
1584 static_library("test_support") { 1585 static_library("test_support") {
1585 visibility += [ "//third_party/WebKit/*" ] 1586 visibility += [ "//third_party/WebKit/*" ]
1586 testonly = true 1587 testonly = true
1587 1588
1588 sources = [ 1589 sources = [
1590 "loader/fetch/MockResource.cpp",
1591 "loader/fetch/MockResource.h",
1592 "loader/fetch/MockResourceClient.cpp",
1593 "loader/fetch/MockResourceClient.h",
1589 "network/mime/MockMimeRegistry.h", 1594 "network/mime/MockMimeRegistry.h",
1590 "scheduler/base/task_queue_manager_delegate_for_test.cc", 1595 "scheduler/base/task_queue_manager_delegate_for_test.cc",
1591 "scheduler/base/test_time_source.cc", 1596 "scheduler/base/test_time_source.cc",
1592 "scheduler/child/scheduler_tqm_delegate_for_test.cc", 1597 "scheduler/child/scheduler_tqm_delegate_for_test.cc",
1593 "scheduler/test/fake_renderer_scheduler.cc", 1598 "scheduler/test/fake_renderer_scheduler.cc",
1594 "scheduler/test/fake_web_task_runner.cc", 1599 "scheduler/test/fake_web_task_runner.cc",
1595 "scheduler/test/fake_web_task_runner.h", 1600 "scheduler/test/fake_web_task_runner.h",
1596 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc", 1601 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc",
1597 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h", 1602 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h",
1598 "scheduler/test/renderer_scheduler_test_support.cc", 1603 "scheduler/test/renderer_scheduler_test_support.cc",
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 "image-decoders/gif/GIFImageDecoderTest.cpp", 1763 "image-decoders/gif/GIFImageDecoderTest.cpp",
1759 "image-decoders/ico/ICOImageDecoderTest.cpp", 1764 "image-decoders/ico/ICOImageDecoderTest.cpp",
1760 "image-decoders/jpeg/JPEGImageDecoderTest.cpp", 1765 "image-decoders/jpeg/JPEGImageDecoderTest.cpp",
1761 "image-decoders/png/PNGImageDecoderTest.cpp", 1766 "image-decoders/png/PNGImageDecoderTest.cpp",
1762 "image-decoders/webp/WEBPImageDecoderTest.cpp", 1767 "image-decoders/webp/WEBPImageDecoderTest.cpp",
1763 "image-encoders/JPEGImageEncoderTest.cpp", 1768 "image-encoders/JPEGImageEncoderTest.cpp",
1764 "instrumentation/tracing/TracedValueTest.cpp", 1769 "instrumentation/tracing/TracedValueTest.cpp",
1765 "instrumentation/tracing/web_process_memory_dump_test.cc", 1770 "instrumentation/tracing/web_process_memory_dump_test.cc",
1766 "json/JSONParserTest.cpp", 1771 "json/JSONParserTest.cpp",
1767 "json/JSONValuesTest.cpp", 1772 "json/JSONValuesTest.cpp",
1773 "loader/fetch/ClientHintsPreferencesTest.cpp",
1774 "loader/fetch/CrossOriginAccessControlTest.cpp",
1775 "loader/fetch/FetchUtilsTest.cpp",
1776 "loader/fetch/MemoryCacheCorrectnessTest.cpp",
1777 "loader/fetch/MemoryCacheCorrectnessTestHelper.cpp",
1778 "loader/fetch/MemoryCacheCorrectnessTestHelper.h",
1779 "loader/fetch/MemoryCacheTest.cpp",
1780 "loader/fetch/MockFetchContext.h",
1781 "loader/fetch/RawResourceTest.cpp",
1782 "loader/fetch/ResourceFetcherTest.cpp",
1783 "loader/fetch/ResourceLoaderOptionsTest.cpp",
1784 "loader/fetch/ResourceTest.cpp",
1768 "mac/VersionUtilMacTest.mm", 1785 "mac/VersionUtilMacTest.mm",
1769 "mojo/CommonCustomTypesStructTraitsTest.cpp", 1786 "mojo/CommonCustomTypesStructTraitsTest.cpp",
1770 "mojo/GeometryStructTraitsTest.cpp", 1787 "mojo/GeometryStructTraitsTest.cpp",
1771 "mojo/KURLSecurityOriginTest.cpp", 1788 "mojo/KURLSecurityOriginTest.cpp",
1772 "network/EncodedFormDataTest.cpp", 1789 "network/EncodedFormDataTest.cpp",
1773 "network/HTTPParsersTest.cpp", 1790 "network/HTTPParsersTest.cpp",
1774 "network/LinkHeaderTest.cpp", 1791 "network/LinkHeaderTest.cpp",
1775 "network/NetworkUtilsTest.cpp", 1792 "network/NetworkUtilsTest.cpp",
1776 "network/ResourceRequestTest.cpp", 1793 "network/ResourceRequestTest.cpp",
1777 "network/ResourceResponseTest.cpp", 1794 "network/ResourceResponseTest.cpp",
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
2094 "//third_party/WebKit/Source:config", 2111 "//third_party/WebKit/Source:config",
2095 "//third_party/WebKit/Source:inside_blink", 2112 "//third_party/WebKit/Source:inside_blink",
2096 ] 2113 ]
2097 2114
2098 deps = [ 2115 deps = [
2099 ":test_support", 2116 ":test_support",
2100 "//testing/gmock", 2117 "//testing/gmock",
2101 "//testing/gtest", 2118 "//testing/gtest",
2102 ] 2119 ]
2103 } 2120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698