| 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/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 1758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1769 "json/JSONValuesTest.cpp", | 1769 "json/JSONValuesTest.cpp", |
| 1770 "mac/VersionUtilMacTest.mm", | 1770 "mac/VersionUtilMacTest.mm", |
| 1771 "mojo/CommonCustomTypesStructTraitsTest.cpp", | 1771 "mojo/CommonCustomTypesStructTraitsTest.cpp", |
| 1772 "mojo/GeometryStructTraitsTest.cpp", | 1772 "mojo/GeometryStructTraitsTest.cpp", |
| 1773 "mojo/KURLSecurityOriginTest.cpp", | 1773 "mojo/KURLSecurityOriginTest.cpp", |
| 1774 "network/EncodedFormDataTest.cpp", | 1774 "network/EncodedFormDataTest.cpp", |
| 1775 "network/HTTPParsersTest.cpp", | 1775 "network/HTTPParsersTest.cpp", |
| 1776 "network/LinkHeaderTest.cpp", | 1776 "network/LinkHeaderTest.cpp", |
| 1777 "network/NetworkUtilsTest.cpp", | 1777 "network/NetworkUtilsTest.cpp", |
| 1778 "network/ResourceRequestTest.cpp", | 1778 "network/ResourceRequestTest.cpp", |
| 1779 "network/ResourceResponseTest.cpp", | |
| 1780 "network/mime/MIMETypeRegistryTest.cpp", | 1779 "network/mime/MIMETypeRegistryTest.cpp", |
| 1781 "scheduler/base/intrusive_heap_unittest.cc", | 1780 "scheduler/base/intrusive_heap_unittest.cc", |
| 1782 "scheduler/base/queueing_time_estimator_unittest.cc", | 1781 "scheduler/base/queueing_time_estimator_unittest.cc", |
| 1783 "scheduler/base/task_queue_manager_unittest.cc", | 1782 "scheduler/base/task_queue_manager_unittest.cc", |
| 1784 "scheduler/base/task_queue_selector_unittest.cc", | 1783 "scheduler/base/task_queue_selector_unittest.cc", |
| 1785 "scheduler/base/test_count_uses_time_source.cc", | 1784 "scheduler/base/test_count_uses_time_source.cc", |
| 1786 "scheduler/base/thread_load_tracker_unittest.cc", | 1785 "scheduler/base/thread_load_tracker_unittest.cc", |
| 1787 "scheduler/base/time_domain_unittest.cc", | 1786 "scheduler/base/time_domain_unittest.cc", |
| 1788 "scheduler/base/work_queue_sets_unittest.cc", | 1787 "scheduler/base/work_queue_sets_unittest.cc", |
| 1789 "scheduler/base/work_queue_unittest.cc", | 1788 "scheduler/base/work_queue_unittest.cc", |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2082 "graphics/Canvas2DLayerBridgeTest.cpp", | 2081 "graphics/Canvas2DLayerBridgeTest.cpp", |
| 2083 "graphics/DeferredImageDecoderTest.cpp", | 2082 "graphics/DeferredImageDecoderTest.cpp", |
| 2084 "graphics/GraphicsLayerTest.cpp", | 2083 "graphics/GraphicsLayerTest.cpp", |
| 2085 "graphics/ImageDecodingStoreTest.cpp", | 2084 "graphics/ImageDecodingStoreTest.cpp", |
| 2086 "graphics/ImageFrameGeneratorTest.cpp", | 2085 "graphics/ImageFrameGeneratorTest.cpp", |
| 2087 "graphics/ImageLayerChromiumTest.cpp", | 2086 "graphics/ImageLayerChromiumTest.cpp", |
| 2088 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", | 2087 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", |
| 2089 "graphics/test/FakeGLES2Interface.h", | 2088 "graphics/test/FakeGLES2Interface.h", |
| 2090 "graphics/test/FakeWebGraphicsContext3DProvider.h", | 2089 "graphics/test/FakeWebGraphicsContext3DProvider.h", |
| 2091 "graphics/test/MockImageDecoder.h", | 2090 "graphics/test/MockImageDecoder.h", |
| 2091 "network/ResourceResponseTest.cpp", |
| 2092 ] | 2092 ] |
| 2093 | 2093 |
| 2094 configs += [ | 2094 configs += [ |
| 2095 ":blink_platform_pch", | 2095 ":blink_platform_pch", |
| 2096 "//third_party/WebKit/Source:config", | 2096 "//third_party/WebKit/Source:config", |
| 2097 "//third_party/WebKit/Source:inside_blink", | 2097 "//third_party/WebKit/Source:inside_blink", |
| 2098 ] | 2098 ] |
| 2099 | 2099 |
| 2100 deps = [ | 2100 deps = [ |
| 2101 ":test_support", | 2101 ":test_support", |
| 2102 "//testing/gmock", | 2102 "//testing/gmock", |
| 2103 "//testing/gtest", | 2103 "//testing/gtest", |
| 2104 ] | 2104 ] |
| 2105 } | 2105 } |
| OLD | NEW |