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

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

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error Created 4 years, 1 month 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
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 "//build/config/compiler:no_size_t_to_int_warning", 651 "//build/config/compiler:no_size_t_to_int_warning",
652 ] 652 ]
653 653
654 deps = [ 654 deps = [
655 ":browsertest_support", 655 ":browsertest_support",
656 ":content_test_mojo_bindings", 656 ":content_test_mojo_bindings",
657 ":layouttest_support", 657 ":layouttest_support",
658 ":test_support", 658 ":test_support",
659 ":web_ui_test_mojo_bindings", 659 ":web_ui_test_mojo_bindings",
660 "//base/test:test_support", 660 "//base/test:test_support",
661 "//components/discardable_memory/client",
662 "//components/discardable_memory/common",
661 "//content:resources", 663 "//content:resources",
662 "//content/app:both_for_content_tests", 664 "//content/app:both_for_content_tests",
663 "//content/browser:for_content_tests", 665 "//content/browser:for_content_tests",
664 "//content/browser/background_sync:background_sync_proto", 666 "//content/browser/background_sync:background_sync_proto",
665 "//content/child:for_content_tests", 667 "//content/child:for_content_tests",
666 "//content/gpu", 668 "//content/gpu",
667 "//content/public/browser", 669 "//content/public/browser",
668 "//content/public/child", 670 "//content/public/child",
669 "//content/public/common", 671 "//content/public/common",
670 "//content/public/renderer", 672 "//content/public/renderer",
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 if (!is_chrome_branded) { 874 if (!is_chrome_branded) {
873 # These tests depend on single process mode, which is disabled 875 # These tests depend on single process mode, which is disabled
874 # in official builds. 876 # in official builds.
875 sources += [ 877 sources += [
876 "../child/child_thread_impl_browsertest.cc", 878 "../child/child_thread_impl_browsertest.cc",
877 "../renderer/browser_render_view_browsertest.cc", 879 "../renderer/browser_render_view_browsertest.cc",
878 "../renderer/dom_serializer_browsertest.cc", 880 "../renderer/dom_serializer_browsertest.cc",
879 "../renderer/resource_fetcher_browsertest.cc", 881 "../renderer/resource_fetcher_browsertest.cc",
880 "../renderer/savable_resources_browsertest.cc", 882 "../renderer/savable_resources_browsertest.cc",
881 ] 883 ]
884
885 deps += [
886 "//components/discardable_memory/client",
887 "//components/discardable_memory/common",
888 "//components/discardable_memory/service",
889 ]
882 } 890 }
883 891
884 if (use_aura) { 892 if (use_aura) {
885 deps += [ 893 deps += [
886 "//ui/aura", 894 "//ui/aura",
887 "//ui/touch_selection:test_support", 895 "//ui/touch_selection:test_support",
888 "//ui/touch_selection:touch_selection", 896 "//ui/touch_selection:touch_selection",
889 ] 897 ]
890 } else { 898 } else {
891 sources -= [ 899 sources -= [
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 "../child/web_url_loader_impl_unittest.cc", 1259 "../child/web_url_loader_impl_unittest.cc",
1252 "../child/worker_thread_registry_unittest.cc", 1260 "../child/worker_thread_registry_unittest.cc",
1253 "../common/android/address_parser_unittest.cc", 1261 "../common/android/address_parser_unittest.cc",
1254 "../common/android/gin_java_bridge_value_unittest.cc", 1262 "../common/android/gin_java_bridge_value_unittest.cc",
1255 "../common/bluetooth/web_bluetooth_device_id_unittest.cc", 1263 "../common/bluetooth/web_bluetooth_device_id_unittest.cc",
1256 "../common/common_param_traits_unittest.cc", 1264 "../common/common_param_traits_unittest.cc",
1257 "../common/cross_site_document_classifier_unittest.cc", 1265 "../common/cross_site_document_classifier_unittest.cc",
1258 "../common/cursors/webcursor_unittest.cc", 1266 "../common/cursors/webcursor_unittest.cc",
1259 "../common/database_connections_unittest.cc", 1267 "../common/database_connections_unittest.cc",
1260 "../common/database_identifier_unittest.cc", 1268 "../common/database_identifier_unittest.cc",
1261 "../common/discardable_shared_memory_heap_unittest.cc",
1262 "../common/dom_storage/dom_storage_map_unittest.cc", 1269 "../common/dom_storage/dom_storage_map_unittest.cc",
1263 "../common/fileapi/file_system_util_unittest.cc", 1270 "../common/fileapi/file_system_util_unittest.cc",
1264 "../common/host_discardable_shared_memory_manager_unittest.cc",
1265 "../common/host_shared_bitmap_manager_unittest.cc", 1271 "../common/host_shared_bitmap_manager_unittest.cc",
1266 "../common/indexed_db/indexed_db_key_unittest.cc", 1272 "../common/indexed_db/indexed_db_key_unittest.cc",
1267 "../common/input/event_with_latency_info_unittest.cc", 1273 "../common/input/event_with_latency_info_unittest.cc",
1268 "../common/input/gesture_event_stream_validator_unittest.cc", 1274 "../common/input/gesture_event_stream_validator_unittest.cc",
1269 "../common/input/input_param_traits_unittest.cc", 1275 "../common/input/input_param_traits_unittest.cc",
1270 "../common/input/touch_event_stream_validator_unittest.cc", 1276 "../common/input/touch_event_stream_validator_unittest.cc",
1271 "../common/inter_process_time_ticks_converter_unittest.cc", 1277 "../common/inter_process_time_ticks_converter_unittest.cc",
1272 "../common/mac/attributed_string_coder_unittest.mm", 1278 "../common/mac/attributed_string_coder_unittest.mm",
1273 "../common/mac/font_descriptor_unittest.mm", 1279 "../common/mac/font_descriptor_unittest.mm",
1274 "../common/manifest_util_unittest.cc", 1280 "../common/manifest_util_unittest.cc",
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
1664 1670
1665 test("content_perftests") { 1671 test("content_perftests") {
1666 # See comment at the top of //content/BUILD.gn for why this is disabled in 1672 # See comment at the top of //content/BUILD.gn for why this is disabled in
1667 # component builds. 1673 # component builds.
1668 if (is_component_build) { 1674 if (is_component_build) {
1669 check_includes = false 1675 check_includes = false
1670 } 1676 }
1671 1677
1672 sources = [ 1678 sources = [
1673 "../browser/renderer_host/input/input_router_impl_perftest.cc", 1679 "../browser/renderer_host/input/input_router_impl_perftest.cc",
1674 "../common/discardable_shared_memory_heap_perftest.cc",
1675 "../test/run_all_perftests.cc", 1680 "../test/run_all_perftests.cc",
1676 ] 1681 ]
1677 deps = [ 1682 deps = [
1678 "//base/test:test_support", 1683 "//base/test:test_support",
1679 "//cc", 1684 "//cc",
1680 "//cc/ipc", 1685 "//cc/ipc",
1681 "//content/browser:for_content_tests", 1686 "//content/browser:for_content_tests",
1682 "//content/public/browser", 1687 "//content/public/browser",
1683 "//content/public/common", 1688 "//content/public/common",
1684 "//content/test:test_support", 1689 "//content/test:test_support",
1685 "//skia", 1690 "//skia",
1686 "//testing/gtest", 1691 "//testing/gtest",
1687 "//testing/perf", 1692 "//testing/perf",
1688 "//ui/events/blink", 1693 "//ui/events/blink",
1689 "//ui/gfx", 1694 "//ui/gfx",
1690 "//ui/gfx/geometry", 1695 "//ui/gfx/geometry",
1691 ] 1696 ]
1692 1697
1693 if (is_android) { 1698 if (is_android) {
1694 deps += [ "//testing/android/native_test:native_test_native_code" ] 1699 deps += [ "//testing/android/native_test:native_test_native_code" ]
1695 } 1700 }
1696 } 1701 }
1697 1702
1698 group("fuzzers") { 1703 group("fuzzers") {
1699 deps = [ 1704 deps = [
1700 "//content/test/fuzzer", 1705 "//content/test/fuzzer",
1701 ] 1706 ]
1702 } 1707 }
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698