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

Side by Side Diff: cc/BUILD.gn

Issue 2023973002: Introduce cc StructTraits unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary MessageLoop Created 4 years, 6 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 | « no previous file | cc/DEPS » ('j') | cc/ipc/DEPS » ('J')
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("cc") { 8 component("cc") {
9 sources = [ 9 sources = [
10 "animation/animation.cc", 10 "animation/animation.cc",
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 "base/unique_notifier_unittest.cc", 793 "base/unique_notifier_unittest.cc",
794 "debug/layer_tree_debug_state_unittest.cc", 794 "debug/layer_tree_debug_state_unittest.cc",
795 "debug/micro_benchmark_controller_unittest.cc", 795 "debug/micro_benchmark_controller_unittest.cc",
796 "debug/rendering_stats_unittest.cc", 796 "debug/rendering_stats_unittest.cc",
797 "input/layer_selection_bound_unittest.cc", 797 "input/layer_selection_bound_unittest.cc",
798 "input/scroll_state_unittest.cc", 798 "input/scroll_state_unittest.cc",
799 "input/scrollbar_animation_controller_linear_fade_unittest.cc", 799 "input/scrollbar_animation_controller_linear_fade_unittest.cc",
800 "input/scrollbar_animation_controller_thinning_unittest.cc", 800 "input/scrollbar_animation_controller_thinning_unittest.cc",
801 "input/top_controls_manager_unittest.cc", 801 "input/top_controls_manager_unittest.cc",
802 "ipc/cc_param_traits_unittest.cc", 802 "ipc/cc_param_traits_unittest.cc",
803 "ipc/struct_traits_unittest.cc",
803 "layers/heads_up_display_layer_impl_unittest.cc", 804 "layers/heads_up_display_layer_impl_unittest.cc",
804 "layers/heads_up_display_unittest.cc", 805 "layers/heads_up_display_unittest.cc",
805 "layers/layer_impl_unittest.cc", 806 "layers/layer_impl_unittest.cc",
806 "layers/layer_iterator_unittest.cc", 807 "layers/layer_iterator_unittest.cc",
807 "layers/layer_list_iterator_unittest.cc", 808 "layers/layer_list_iterator_unittest.cc",
808 "layers/layer_position_constraint_unittest.cc", 809 "layers/layer_position_constraint_unittest.cc",
809 "layers/layer_proto_converter_unittest.cc", 810 "layers/layer_proto_converter_unittest.cc",
810 "layers/layer_unittest.cc", 811 "layers/layer_unittest.cc",
811 "layers/layer_utils_unittest.cc", 812 "layers/layer_utils_unittest.cc",
812 "layers/nine_patch_layer_impl_unittest.cc", 813 "layers/nine_patch_layer_impl_unittest.cc",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 data = [ 943 data = [
943 "test/data/", 944 "test/data/",
944 ] 945 ]
945 } 946 }
946 947
947 deps = [ 948 deps = [
948 ":cc", 949 ":cc",
949 ":test_support", 950 ":test_support",
950 "//base/test:test_support", 951 "//base/test:test_support",
951 "//cc/ipc", 952 "//cc/ipc",
953 "//cc/ipc:test_interfaces",
952 "//cc/proto", 954 "//cc/proto",
953 "//cc/surfaces", 955 "//cc/surfaces",
954 "//cc/surfaces:surface_id", 956 "//cc/surfaces:surface_id",
955 "//gpu", 957 "//gpu",
956 "//gpu:test_support", 958 "//gpu:test_support",
957 "//gpu/command_buffer/client:gles2_interface", 959 "//gpu/command_buffer/client:gles2_interface",
958 "//gpu/command_buffer/common:gles2_utils", 960 "//gpu/command_buffer/common:gles2_utils",
959 "//media", 961 "//media",
962 "//mojo/edk/system",
Ken Rockot(use gerrit already) 2016/05/31 15:49:22 You should also include a dependency on "//mojo/pu
Fady Samuel 2016/05/31 15:57:20 Done.
963 "//mojo/edk/test:test_support",
Ken Rockot(use gerrit already) 2016/05/31 15:49:22 And if you get rid of SCopedIPCSupport you can get
Fady Samuel 2016/05/31 15:57:20 Done.
960 "//testing/gmock", 964 "//testing/gmock",
961 "//testing/gtest", 965 "//testing/gtest",
962 "//ui/events:events_base", 966 "//ui/events:events_base",
963 "//ui/gfx", 967 "//ui/gfx",
964 "//ui/gfx:test_support", 968 "//ui/gfx:test_support",
965 "//ui/gfx/geometry", 969 "//ui/gfx/geometry",
966 "//ui/gl", 970 "//ui/gl",
967 "//ui/gl:test_support", 971 "//ui/gl:test_support",
968 ] 972 ]
969 973
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 "//ui/gfx/geometry", 1015 "//ui/gfx/geometry",
1012 "//ui/gl", 1016 "//ui/gl",
1013 "//ui/gl:test_support", 1017 "//ui/gl:test_support",
1014 ] 1018 ]
1015 1019
1016 # This target should not require the Chrome executable to run. 1020 # This target should not require the Chrome executable to run.
1017 assert_no_deps = [ "//chrome" ] 1021 assert_no_deps = [ "//chrome" ]
1018 } 1022 }
1019 # When adding support for isolates, please have a look at run-time dependencies 1023 # When adding support for isolates, please have a look at run-time dependencies
1020 # in the cc_unittests_run target in cc_tests.gyp. 1024 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/DEPS » ('j') | cc/ipc/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698