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

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

Issue 1978053002: Move cc ParamTraits to cc/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ignore size_t warnings Created 4 years, 7 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
« no previous file with comments | « content/renderer/android/synchronous_compositor_proxy.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("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "//third_party/WebKit/public:blink", 42 "//third_party/WebKit/public:blink",
43 "//third_party/WebKit/public:test_support", 43 "//third_party/WebKit/public:test_support",
44 ] 44 ]
45 deps = [ 45 deps = [
46 ":browsertest_base", 46 ":browsertest_base",
47 ":content_test_mojo_bindings", 47 ":content_test_mojo_bindings",
48 "//base/third_party/dynamic_annotations", 48 "//base/third_party/dynamic_annotations",
49 "//cc", 49 "//cc",
50 "//cc:test_support", 50 "//cc:test_support",
51 "//cc/blink", 51 "//cc/blink",
52 "//cc/ipc",
52 "//cc/surfaces", 53 "//cc/surfaces",
53 "//components/display_compositor", 54 "//components/display_compositor",
54 "//components/scheduler:scheduler", 55 "//components/scheduler:scheduler",
55 "//components/scheduler:test_support", 56 "//components/scheduler:test_support",
56 "//content/app:both_for_content_tests", 57 "//content/app:both_for_content_tests",
57 "//content/browser:for_content_tests", 58 "//content/browser:for_content_tests",
58 "//content/browser/speech/proto", 59 "//content/browser/speech/proto",
59 "//content/child:for_content_tests", 60 "//content/child:for_content_tests",
60 "//content/gpu", 61 "//content/gpu",
61 "//content/public/browser", 62 "//content/public/browser",
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 628
628 configs += [ "//build/config:precompiled_headers" ] 629 configs += [ "//build/config:precompiled_headers" ]
629 630
630 deps = [ 631 deps = [
631 ":content_test_mojo_bindings", 632 ":content_test_mojo_bindings",
632 ":test_support", 633 ":test_support",
633 "//base/test:test_support", 634 "//base/test:test_support",
634 "//base/third_party/dynamic_annotations", 635 "//base/third_party/dynamic_annotations",
635 "//cc", 636 "//cc",
636 "//cc:test_support", 637 "//cc:test_support",
638 "//cc/ipc",
637 "//cc/surfaces", 639 "//cc/surfaces",
638 "//components/display_compositor", 640 "//components/display_compositor",
639 "//components/scheduler", 641 "//components/scheduler",
640 "//content:resources", 642 "//content:resources",
641 "//content/app:both_for_content_tests", 643 "//content/app:both_for_content_tests",
642 "//content/browser:for_content_tests", 644 "//content/browser:for_content_tests",
643 "//content/browser/cache_storage:cache_storage_proto", 645 "//content/browser/cache_storage:cache_storage_proto",
644 "//content/browser/notifications:notification_proto", 646 "//content/browser/notifications:notification_proto",
645 "//content/browser/service_worker:service_worker_proto", 647 "//content/browser/service_worker:service_worker_proto",
646 "//content/browser/speech/proto", 648 "//content/browser/speech/proto",
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 881
880 sources = [ 882 sources = [
881 "../browser/renderer_host/input/input_router_impl_perftest.cc", 883 "../browser/renderer_host/input/input_router_impl_perftest.cc",
882 "../common/cc_messages_perftest.cc", 884 "../common/cc_messages_perftest.cc",
883 "../common/discardable_shared_memory_heap_perftest.cc", 885 "../common/discardable_shared_memory_heap_perftest.cc",
884 "../test/run_all_perftests.cc", 886 "../test/run_all_perftests.cc",
885 ] 887 ]
886 deps = [ 888 deps = [
887 "//base/test:test_support", 889 "//base/test:test_support",
888 "//cc", 890 "//cc",
891 "//cc/ipc",
889 "//content/browser:for_content_tests", 892 "//content/browser:for_content_tests",
890 "//content/public/browser", 893 "//content/public/browser",
891 "//content/public/common", 894 "//content/public/common",
892 "//content/test:test_support", 895 "//content/test:test_support",
893 "//skia", 896 "//skia",
894 "//testing/gtest", 897 "//testing/gtest",
895 "//testing/perf", 898 "//testing/perf",
896 "//ui/gfx", 899 "//ui/gfx",
897 "//ui/gfx/geometry", 900 "//ui/gfx/geometry",
898 ] 901 ]
899 902
900 if (is_android) { 903 if (is_android) {
901 deps += [ "//testing/android/native_test:native_test_native_code" ] 904 deps += [ "//testing/android/native_test:native_test_native_code" ]
902 } 905 }
903 } 906 }
OLDNEW
« no previous file with comments | « content/renderer/android/synchronous_compositor_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698