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

Side by Side Diff: cc/BUILD.gn

Issue 1411663002: cc: Split Proxy to eliminate unnecessary dependencies on the impl side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update perf tests. Created 5 years, 2 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/animation/scrollbar_animation_controller_linear_fade_unittest.cc » ('j') | 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("//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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 "trees/property_tree_builder.h", 484 "trees/property_tree_builder.h",
485 "trees/proxy.cc", 485 "trees/proxy.cc",
486 "trees/proxy.h", 486 "trees/proxy.h",
487 "trees/proxy_impl.h", 487 "trees/proxy_impl.h",
488 "trees/proxy_main.h", 488 "trees/proxy_main.h",
489 "trees/scoped_abort_remaining_swap_promises.h", 489 "trees/scoped_abort_remaining_swap_promises.h",
490 "trees/single_thread_proxy.cc", 490 "trees/single_thread_proxy.cc",
491 "trees/single_thread_proxy.h", 491 "trees/single_thread_proxy.h",
492 "trees/swap_promise_monitor.cc", 492 "trees/swap_promise_monitor.cc",
493 "trees/swap_promise_monitor.h", 493 "trees/swap_promise_monitor.h",
494 "trees/task_runner_provider.cc",
495 "trees/task_runner_provider.h",
494 "trees/thread_proxy.cc", 496 "trees/thread_proxy.cc",
495 "trees/thread_proxy.h", 497 "trees/thread_proxy.h",
496 "trees/threaded_channel.cc", 498 "trees/threaded_channel.cc",
497 "trees/threaded_channel.h", 499 "trees/threaded_channel.h",
498 "trees/tree_synchronizer.cc", 500 "trees/tree_synchronizer.cc",
499 "trees/tree_synchronizer.h", 501 "trees/tree_synchronizer.h",
500 ] 502 ]
501 503
502 if (target_cpu == "x86" || target_cpu == "x64") { 504 if (target_cpu == "x86" || target_cpu == "x64") {
503 sources += [ 505 sources += [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 "test/fake_delegated_renderer_layer.cc", 552 "test/fake_delegated_renderer_layer.cc",
551 "test/fake_delegated_renderer_layer.h", 553 "test/fake_delegated_renderer_layer.h",
552 "test/fake_delegated_renderer_layer_impl.cc", 554 "test/fake_delegated_renderer_layer_impl.cc",
553 "test/fake_delegated_renderer_layer_impl.h", 555 "test/fake_delegated_renderer_layer_impl.h",
554 "test/fake_display_list_raster_source.cc", 556 "test/fake_display_list_raster_source.cc",
555 "test/fake_display_list_raster_source.h", 557 "test/fake_display_list_raster_source.h",
556 "test/fake_display_list_recording_source.cc", 558 "test/fake_display_list_recording_source.cc",
557 "test/fake_display_list_recording_source.h", 559 "test/fake_display_list_recording_source.h",
558 "test/fake_external_begin_frame_source.cc", 560 "test/fake_external_begin_frame_source.cc",
559 "test/fake_external_begin_frame_source.h", 561 "test/fake_external_begin_frame_source.h",
560 "test/fake_impl_proxy.h", 562 "test/fake_impl_task_runner_provider.h",
561 "test/fake_layer_tree_host.cc", 563 "test/fake_layer_tree_host.cc",
562 "test/fake_layer_tree_host.h", 564 "test/fake_layer_tree_host.h",
563 "test/fake_layer_tree_host_client.cc", 565 "test/fake_layer_tree_host_client.cc",
564 "test/fake_layer_tree_host_client.h", 566 "test/fake_layer_tree_host_client.h",
565 "test/fake_layer_tree_host_impl.cc", 567 "test/fake_layer_tree_host_impl.cc",
566 "test/fake_layer_tree_host_impl.h", 568 "test/fake_layer_tree_host_impl.h",
567 "test/fake_layer_tree_host_impl_client.cc", 569 "test/fake_layer_tree_host_impl_client.cc",
568 "test/fake_layer_tree_host_impl_client.h", 570 "test/fake_layer_tree_host_impl_client.h",
569 "test/fake_output_surface.cc", 571 "test/fake_output_surface.cc",
570 "test/fake_output_surface.h", 572 "test/fake_output_surface.h",
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 "//ui/gl", 923 "//ui/gl",
922 "//ui/gl:test_support", 924 "//ui/gl:test_support",
923 ] 925 ]
924 926
925 if (is_android) { 927 if (is_android) {
926 isolate_file = "cc_perftests.isolate" 928 isolate_file = "cc_perftests.isolate"
927 } 929 }
928 } 930 }
929 # When adding support for isolates, please have a look at run-time dependencies 931 # When adding support for isolates, please have a look at run-time dependencies
930 # in the cc_unittests_run target in cc_tests.gyp. 932 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698