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

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: 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/cc.gyp » ('j') | cc/trees/layer_tree_impl.h » ('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("//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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 "trees/proxy_common.h", 489 "trees/proxy_common.h",
490 "trees/proxy_impl.h", 490 "trees/proxy_impl.h",
491 "trees/proxy_main.h", 491 "trees/proxy_main.h",
492 "trees/scoped_abort_remaining_swap_promises.h", 492 "trees/scoped_abort_remaining_swap_promises.h",
493 "trees/single_thread_proxy.cc", 493 "trees/single_thread_proxy.cc",
494 "trees/single_thread_proxy.h", 494 "trees/single_thread_proxy.h",
495 "trees/swap_promise_monitor.cc", 495 "trees/swap_promise_monitor.cc",
496 "trees/swap_promise_monitor.h", 496 "trees/swap_promise_monitor.h",
497 "trees/thread_proxy.cc", 497 "trees/thread_proxy.cc",
498 "trees/thread_proxy.h", 498 "trees/thread_proxy.h",
499 "trees/thread_verifier.cc",
500 "trees/thread_verifier.h",
499 "trees/threaded_channel.cc", 501 "trees/threaded_channel.cc",
500 "trees/threaded_channel.h", 502 "trees/threaded_channel.h",
501 "trees/tree_synchronizer.cc", 503 "trees/tree_synchronizer.cc",
502 "trees/tree_synchronizer.h", 504 "trees/tree_synchronizer.h",
503 ] 505 ]
504 506
505 if (target_cpu == "x86" || target_cpu == "x64") { 507 if (target_cpu == "x86" || target_cpu == "x64") {
506 sources += [ 508 sources += [
507 "raster/texture_compressor_etc1_sse.cc", 509 "raster/texture_compressor_etc1_sse.cc",
508 "raster/texture_compressor_etc1_sse.h", 510 "raster/texture_compressor_etc1_sse.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 "test/fake_delegated_renderer_layer.h", 555 "test/fake_delegated_renderer_layer.h",
554 "test/fake_delegated_renderer_layer_impl.cc", 556 "test/fake_delegated_renderer_layer_impl.cc",
555 "test/fake_delegated_renderer_layer_impl.h", 557 "test/fake_delegated_renderer_layer_impl.h",
556 "test/fake_display_list_raster_source.cc", 558 "test/fake_display_list_raster_source.cc",
557 "test/fake_display_list_raster_source.h", 559 "test/fake_display_list_raster_source.h",
558 "test/fake_display_list_recording_source.cc", 560 "test/fake_display_list_recording_source.cc",
559 "test/fake_display_list_recording_source.h", 561 "test/fake_display_list_recording_source.h",
560 "test/fake_external_begin_frame_source.cc", 562 "test/fake_external_begin_frame_source.cc",
561 "test/fake_external_begin_frame_source.h", 563 "test/fake_external_begin_frame_source.h",
562 "test/fake_impl_proxy.h", 564 "test/fake_impl_proxy.h",
565 "test/fake_impl_thread_verifier.h",
563 "test/fake_layer_tree_host.cc", 566 "test/fake_layer_tree_host.cc",
564 "test/fake_layer_tree_host.h", 567 "test/fake_layer_tree_host.h",
565 "test/fake_layer_tree_host_client.cc", 568 "test/fake_layer_tree_host_client.cc",
566 "test/fake_layer_tree_host_client.h", 569 "test/fake_layer_tree_host_client.h",
567 "test/fake_layer_tree_host_impl.cc", 570 "test/fake_layer_tree_host_impl.cc",
568 "test/fake_layer_tree_host_impl.h", 571 "test/fake_layer_tree_host_impl.h",
569 "test/fake_layer_tree_host_impl_client.cc", 572 "test/fake_layer_tree_host_impl_client.cc",
570 "test/fake_layer_tree_host_impl_client.h", 573 "test/fake_layer_tree_host_impl_client.h",
571 "test/fake_output_surface.cc", 574 "test/fake_output_surface.cc",
572 "test/fake_output_surface.h", 575 "test/fake_output_surface.h",
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 "//ui/gl", 928 "//ui/gl",
926 "//ui/gl:test_support", 929 "//ui/gl:test_support",
927 ] 930 ]
928 931
929 if (is_android) { 932 if (is_android) {
930 isolate_file = "cc_perftests.isolate" 933 isolate_file = "cc_perftests.isolate"
931 } 934 }
932 } 935 }
933 # When adding support for isolates, please have a look at run-time dependencies 936 # When adding support for isolates, please have a look at run-time dependencies
934 # in the cc_unittests_run target in cc_tests.gyp. 937 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/trees/layer_tree_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698