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

Side by Side Diff: cc/BUILD.gn

Issue 1028333002: Chromium -> Mojo roll. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 "resources/single_release_callback.cc", 411 "resources/single_release_callback.cc",
412 "resources/single_release_callback.h", 412 "resources/single_release_callback.h",
413 "resources/single_release_callback_impl.cc", 413 "resources/single_release_callback_impl.cc",
414 "resources/single_release_callback_impl.h", 414 "resources/single_release_callback_impl.h",
415 "resources/skpicture_content_layer_updater.cc", 415 "resources/skpicture_content_layer_updater.cc",
416 "resources/skpicture_content_layer_updater.h", 416 "resources/skpicture_content_layer_updater.h",
417 "resources/software_rasterizer.cc", 417 "resources/software_rasterizer.cc",
418 "resources/software_rasterizer.h", 418 "resources/software_rasterizer.h",
419 "resources/task_graph_runner.cc", 419 "resources/task_graph_runner.cc",
420 "resources/task_graph_runner.h", 420 "resources/task_graph_runner.h",
421 "resources/texture_compressor.cc",
422 "resources/texture_compressor.h",
423 "resources/texture_compressor_etc1.cc",
424 "resources/texture_compressor_etc1.h",
421 "resources/texture_mailbox.cc", 425 "resources/texture_mailbox.cc",
422 "resources/texture_mailbox.h", 426 "resources/texture_mailbox.h",
423 "resources/texture_mailbox_deleter.cc", 427 "resources/texture_mailbox_deleter.cc",
424 "resources/texture_mailbox_deleter.h", 428 "resources/texture_mailbox_deleter.h",
425 "resources/texture_uploader.cc", 429 "resources/texture_uploader.cc",
426 "resources/texture_uploader.h", 430 "resources/texture_uploader.h",
427 "resources/tile.cc", 431 "resources/tile.cc",
428 "resources/tile.h", 432 "resources/tile.h",
429 "resources/tile_draw_info.cc", 433 "resources/tile_draw_info.cc",
430 "resources/tile_draw_info.h", 434 "resources/tile_draw_info.h",
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 "test/test_gpu_memory_buffer_manager.h", 652 "test/test_gpu_memory_buffer_manager.h",
649 "test/test_image_factory.cc", 653 "test/test_image_factory.cc",
650 "test/test_image_factory.h", 654 "test/test_image_factory.h",
651 "test/test_in_process_context_provider.cc", 655 "test/test_in_process_context_provider.cc",
652 "test/test_in_process_context_provider.h", 656 "test/test_in_process_context_provider.h",
653 "test/test_now_source.cc", 657 "test/test_now_source.cc",
654 "test/test_now_source.h", 658 "test/test_now_source.h",
655 "test/test_occlusion_tracker.h", 659 "test/test_occlusion_tracker.h",
656 "test/test_shared_bitmap_manager.cc", 660 "test/test_shared_bitmap_manager.cc",
657 "test/test_shared_bitmap_manager.h", 661 "test/test_shared_bitmap_manager.h",
662 "test/test_task_graph_runner.cc",
663 "test/test_task_graph_runner.h",
658 "test/test_texture.cc", 664 "test/test_texture.cc",
659 "test/test_texture.h", 665 "test/test_texture.h",
660 "test/test_tile_priorities.cc", 666 "test/test_tile_priorities.cc",
661 "test/test_tile_priorities.h", 667 "test/test_tile_priorities.h",
662 "test/test_web_graphics_context_3d.cc", 668 "test/test_web_graphics_context_3d.cc",
663 "test/test_web_graphics_context_3d.h", 669 "test/test_web_graphics_context_3d.h",
664 "test/tiled_layer_test_common.cc", 670 "test/tiled_layer_test_common.cc",
665 "test/tiled_layer_test_common.h", 671 "test/tiled_layer_test_common.h",
666 ] 672 ]
667 673
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 ] 859 ]
854 } 860 }
855 861
856 test("cc_perftests") { 862 test("cc_perftests") {
857 sources = [ 863 sources = [
858 "layers/layer_perftest.cc", 864 "layers/layer_perftest.cc",
859 "layers/picture_layer_impl_perftest.cc", 865 "layers/picture_layer_impl_perftest.cc",
860 "resources/picture_layer_tiling_perftest.cc", 866 "resources/picture_layer_tiling_perftest.cc",
861 "resources/picture_pile_impl_perftest.cc", 867 "resources/picture_pile_impl_perftest.cc",
862 "resources/task_graph_runner_perftest.cc", 868 "resources/task_graph_runner_perftest.cc",
869 "resources/texture_compressor_perftest.cc",
863 "resources/tile_manager_perftest.cc", 870 "resources/tile_manager_perftest.cc",
864 "resources/tile_task_worker_pool_perftest.cc", 871 "resources/tile_task_worker_pool_perftest.cc",
865 "test/cc_test_suite.cc", 872 "test/cc_test_suite.cc",
866 "test/run_all_perftests.cc", 873 "test/run_all_perftests.cc",
867 "trees/layer_tree_host_common_perftest.cc", 874 "trees/layer_tree_host_common_perftest.cc",
868 "trees/layer_tree_host_perftest.cc", 875 "trees/layer_tree_host_perftest.cc",
869 "trees/occlusion_tracker_perftest.cc", 876 "trees/occlusion_tracker_perftest.cc",
870 ] 877 ]
871 878
872 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 879 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
(...skipping 10 matching lines...) Expand all
883 "//testing/gmock", 890 "//testing/gmock",
884 "//testing/gtest", 891 "//testing/gtest",
885 "//testing/perf", 892 "//testing/perf",
886 "//ui/gfx", 893 "//ui/gfx",
887 "//ui/gfx/geometry", 894 "//ui/gfx/geometry",
888 "//ui/gl", 895 "//ui/gl",
889 ] 896 ]
890 } 897 }
891 # When adding support for isolates, please have a look at run-time dependencies 898 # When adding support for isolates, please have a look at run-time dependencies
892 # in the cc_unittests_run target in cc_tests.gyp. 899 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698