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

Side by Side Diff: cc/BUILD.gn

Issue 1673783004: Hook up BeginFrameSource to SurfaceFactoryClient via SurfaceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile Created 4 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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 "trees/threaded_channel_unittest.cc", 899 "trees/threaded_channel_unittest.cc",
900 "trees/tree_synchronizer_unittest.cc", 900 "trees/tree_synchronizer_unittest.cc",
901 901
902 # Surfaces test files. 902 # Surfaces test files.
903 "surfaces/display_scheduler_unittest.cc", 903 "surfaces/display_scheduler_unittest.cc",
904 "surfaces/display_unittest.cc", 904 "surfaces/display_unittest.cc",
905 "surfaces/surface_aggregator_unittest.cc", 905 "surfaces/surface_aggregator_unittest.cc",
906 "surfaces/surface_display_output_surface_unittest.cc", 906 "surfaces/surface_display_output_surface_unittest.cc",
907 "surfaces/surface_factory_unittest.cc", 907 "surfaces/surface_factory_unittest.cc",
908 "surfaces/surface_hittest_unittest.cc", 908 "surfaces/surface_hittest_unittest.cc",
909 "surfaces/surface_manager_unittest.cc",
909 "surfaces/surface_unittest.cc", 910 "surfaces/surface_unittest.cc",
910 "surfaces/surfaces_pixeltest.cc", 911 "surfaces/surfaces_pixeltest.cc",
911 912
912 # Setup. 913 # Setup.
913 "test/cc_test_suite.cc", 914 "test/cc_test_suite.cc",
914 "test/run_all_unittests.cc", 915 "test/run_all_unittests.cc",
915 ] 916 ]
916 917
917 configs += [ "//build/config:precompiled_headers" ] 918 configs += [ "//build/config:precompiled_headers" ]
918 data = [ 919 data = [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 "//ui/gl", 986 "//ui/gl",
986 "//ui/gl:test_support", 987 "//ui/gl:test_support",
987 ] 988 ]
988 989
989 if (is_android) { 990 if (is_android) {
990 isolate_file = "cc_perftests.isolate" 991 isolate_file = "cc_perftests.isolate"
991 } 992 }
992 } 993 }
993 # When adding support for isolates, please have a look at run-time dependencies 994 # When adding support for isolates, please have a look at run-time dependencies
994 # in the cc_unittests_run target in cc_tests.gyp. 995 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698