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

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

Issue 2723923002: Yukari: organize platform/loader/testing (Closed)
Patch Set: add missed files Created 3 years, 9 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 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after
1549 configs -= [ "//build/config/compiler:default_symbols" ] 1549 configs -= [ "//build/config/compiler:default_symbols" ]
1550 configs += [ "//build/config/compiler:no_symbols" ] 1550 configs += [ "//build/config/compiler:no_symbols" ]
1551 } 1551 }
1552 } 1552 }
1553 1553
1554 static_library("test_support") { 1554 static_library("test_support") {
1555 visibility += [ "//third_party/WebKit/*" ] 1555 visibility += [ "//third_party/WebKit/*" ]
1556 testonly = true 1556 testonly = true
1557 1557
1558 sources = [ 1558 sources = [
1559 "loader/fetch/MockResource.cpp",
1560 "loader/fetch/MockResource.h",
1561 "loader/fetch/MockResourceClient.cpp",
1562 "loader/fetch/MockResourceClient.h",
1563 "loader/testing/FetchTestingPlatformSupport.cpp", 1559 "loader/testing/FetchTestingPlatformSupport.cpp",
1564 "loader/testing/FetchTestingPlatformSupport.h", 1560 "loader/testing/FetchTestingPlatformSupport.h",
1565 "loader/testing/MockFetchContext.h", 1561 "loader/testing/MockFetchContext.h",
1562 "loader/testing/MockResource.cpp",
1563 "loader/testing/MockResource.h",
1564 "loader/testing/MockResourceClient.cpp",
1565 "loader/testing/MockResourceClient.h",
1566 "network/mime/MockMimeRegistry.h", 1566 "network/mime/MockMimeRegistry.h",
1567 "scheduler/base/task_queue_manager_delegate_for_test.cc", 1567 "scheduler/base/task_queue_manager_delegate_for_test.cc",
1568 "scheduler/base/test_time_source.cc", 1568 "scheduler/base/test_time_source.cc",
1569 "scheduler/child/scheduler_tqm_delegate_for_test.cc", 1569 "scheduler/child/scheduler_tqm_delegate_for_test.cc",
1570 "scheduler/test/fake_renderer_scheduler.cc", 1570 "scheduler/test/fake_renderer_scheduler.cc",
1571 "scheduler/test/fake_web_task_runner.cc", 1571 "scheduler/test/fake_web_task_runner.cc",
1572 "scheduler/test/fake_web_task_runner.h", 1572 "scheduler/test/fake_web_task_runner.h",
1573 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc", 1573 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc",
1574 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h", 1574 "scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h",
1575 "scheduler/test/renderer_scheduler_test_support.cc", 1575 "scheduler/test/renderer_scheduler_test_support.cc",
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 "//third_party/WebKit/Source:config", 2075 "//third_party/WebKit/Source:config",
2076 "//third_party/WebKit/Source:inside_blink", 2076 "//third_party/WebKit/Source:inside_blink",
2077 ] 2077 ]
2078 2078
2079 deps = [ 2079 deps = [
2080 ":test_support", 2080 ":test_support",
2081 "//testing/gmock", 2081 "//testing/gmock",
2082 "//testing/gtest", 2082 "//testing/gtest",
2083 ] 2083 ]
2084 } 2084 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698