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

Side by Side Diff: cc/BUILD.gn

Issue 1417053005: cc: Split ThreadProxy into ProxyMain and ProxyImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from #18. Created 5 years 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/test/layer_tree_test.cc » ('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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 "trees/occlusion.h", 486 "trees/occlusion.h",
487 "trees/occlusion_tracker.cc", 487 "trees/occlusion_tracker.cc",
488 "trees/occlusion_tracker.h", 488 "trees/occlusion_tracker.h",
489 "trees/property_tree.cc", 489 "trees/property_tree.cc",
490 "trees/property_tree.h", 490 "trees/property_tree.h",
491 "trees/property_tree_builder.cc", 491 "trees/property_tree_builder.cc",
492 "trees/property_tree_builder.h", 492 "trees/property_tree_builder.h",
493 "trees/proxy.h", 493 "trees/proxy.h",
494 "trees/proxy_common.cc", 494 "trees/proxy_common.cc",
495 "trees/proxy_common.h", 495 "trees/proxy_common.h",
496 "trees/proxy_impl.cc",
496 "trees/proxy_impl.h", 497 "trees/proxy_impl.h",
498 "trees/proxy_main.cc",
497 "trees/proxy_main.h", 499 "trees/proxy_main.h",
498 "trees/remote_proto_channel.h", 500 "trees/remote_proto_channel.h",
499 "trees/scoped_abort_remaining_swap_promises.h", 501 "trees/scoped_abort_remaining_swap_promises.h",
500 "trees/single_thread_proxy.cc", 502 "trees/single_thread_proxy.cc",
501 "trees/single_thread_proxy.h", 503 "trees/single_thread_proxy.h",
502 "trees/swap_promise_monitor.cc", 504 "trees/swap_promise_monitor.cc",
503 "trees/swap_promise_monitor.h", 505 "trees/swap_promise_monitor.h",
504 "trees/task_runner_provider.cc", 506 "trees/task_runner_provider.cc",
505 "trees/task_runner_provider.h", 507 "trees/task_runner_provider.h",
506 "trees/thread_proxy.cc",
507 "trees/thread_proxy.h",
508 "trees/threaded_channel.cc", 508 "trees/threaded_channel.cc",
509 "trees/threaded_channel.h", 509 "trees/threaded_channel.h",
510 "trees/tree_synchronizer.cc", 510 "trees/tree_synchronizer.cc",
511 "trees/tree_synchronizer.h", 511 "trees/tree_synchronizer.h",
512 ] 512 ]
513 513
514 if (target_cpu == "x86" || target_cpu == "x64") { 514 if (target_cpu == "x86" || target_cpu == "x64") {
515 sources += [ 515 sources += [
516 "raster/texture_compressor_etc1_sse.cc", 516 "raster/texture_compressor_etc1_sse.cc",
517 "raster/texture_compressor_etc1_sse.h", 517 "raster/texture_compressor_etc1_sse.h",
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 "//ui/gl", 940 "//ui/gl",
941 "//ui/gl:test_support", 941 "//ui/gl:test_support",
942 ] 942 ]
943 943
944 if (is_android) { 944 if (is_android) {
945 isolate_file = "cc_perftests.isolate" 945 isolate_file = "cc_perftests.isolate"
946 } 946 }
947 } 947 }
948 # When adding support for isolates, please have a look at run-time dependencies 948 # When adding support for isolates, please have a look at run-time dependencies
949 # in the cc_unittests_run target in cc_tests.gyp. 949 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/test/layer_tree_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698