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

Side by Side Diff: cc/BUILD.gn

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: Rebase Created 3 years, 11 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//cc/cc.gni") 6 import("//cc/cc.gni")
7 7
8 cc_component("cc") { 8 cc_component("cc") {
9 sources = [ 9 sources = [
10 "debug/benchmark_instrumentation.cc", 10 "debug/benchmark_instrumentation.cc",
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 # TODO(khushalsagar): Remove once crbug.com/683263 is fixed. 515 # TODO(khushalsagar): Remove once crbug.com/683263 is fixed.
516 configs = [ "//build/config/compiler:no_size_t_to_int_warning" ] 516 configs = [ "//build/config/compiler:no_size_t_to_int_warning" ]
517 517
518 public_deps = [ 518 public_deps = [
519 "//cc/base", 519 "//cc/base",
520 "//skia", 520 "//skia",
521 ] 521 ]
522 deps = [ 522 deps = [
523 "//base", 523 "//base",
524 "//base/third_party/dynamic_annotations", 524 "//base/third_party/dynamic_annotations",
525 "//cc/paint",
525 "//cc/surfaces:surface_id", 526 "//cc/surfaces:surface_id",
526 "//gpu", 527 "//gpu",
527 "//gpu/command_buffer/client:gles2_implementation", 528 "//gpu/command_buffer/client:gles2_implementation",
528 "//gpu/command_buffer/client:gles2_interface", 529 "//gpu/command_buffer/client:gles2_interface",
529 "//gpu/ipc:gl_in_process_context", 530 "//gpu/ipc:gl_in_process_context",
530 "//gpu/skia_bindings:skia_bindings", 531 "//gpu/skia_bindings:skia_bindings",
531 "//media", 532 "//media",
532 "//third_party/libyuv", 533 "//third_party/libyuv",
533 "//ui/events:events_base", 534 "//ui/events:events_base",
534 "//ui/gfx", 535 "//ui/gfx",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 704
704 public_deps = [ 705 public_deps = [
705 ":cc", 706 ":cc",
706 "//cc/animation", 707 "//cc/animation",
707 "//gpu:test_support", 708 "//gpu:test_support",
708 ] 709 ]
709 deps = [ 710 deps = [
710 "//base", 711 "//base",
711 "//base/test:test_support", 712 "//base/test:test_support",
712 "//base/third_party/dynamic_annotations", 713 "//base/third_party/dynamic_annotations",
714 "//cc/paint",
713 "//cc/surfaces", 715 "//cc/surfaces",
714 "//cc/surfaces:surface_id", 716 "//cc/surfaces:surface_id",
715 "//gpu/command_buffer/client:gles2_c_lib", 717 "//gpu/command_buffer/client:gles2_c_lib",
716 "//gpu/command_buffer/client:gles2_implementation", 718 "//gpu/command_buffer/client:gles2_implementation",
717 "//gpu/command_buffer/common:gles2_utils", 719 "//gpu/command_buffer/common:gles2_utils",
718 "//gpu/ipc:gl_in_process_context", 720 "//gpu/ipc:gl_in_process_context",
719 "//gpu/skia_bindings", 721 "//gpu/skia_bindings",
720 "//media", 722 "//media",
721 "//skia", 723 "//skia",
722 "//testing/gmock", 724 "//testing/gmock",
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 908
907 # TODO(khushalsagar): Remove once crbug.com/683263 is fixed. 909 # TODO(khushalsagar): Remove once crbug.com/683263 is fixed.
908 configs = [ "//build/config/compiler:no_size_t_to_int_warning" ] 910 configs = [ "//build/config/compiler:no_size_t_to_int_warning" ]
909 911
910 deps = [ 912 deps = [
911 ":cc", 913 ":cc",
912 ":test_support", 914 ":test_support",
913 "//base/test:test_support", 915 "//base/test:test_support",
914 "//cc/ipc", 916 "//cc/ipc",
915 "//cc/ipc:test_interfaces", 917 "//cc/ipc:test_interfaces",
918 "//cc/paint",
916 "//cc/surfaces", 919 "//cc/surfaces",
917 "//cc/surfaces:surface_id", 920 "//cc/surfaces:surface_id",
918 "//cc/surfaces:surfaces", 921 "//cc/surfaces:surfaces",
919 "//gpu", 922 "//gpu",
920 "//gpu:test_support", 923 "//gpu:test_support",
921 "//gpu/command_buffer/client:gles2_interface", 924 "//gpu/command_buffer/client:gles2_interface",
922 "//gpu/command_buffer/common:gles2_utils", 925 "//gpu/command_buffer/common:gles2_utils",
923 "//media", 926 "//media",
924 "//mojo/edk/system", 927 "//mojo/edk/system",
925 "//mojo/public/cpp/bindings", 928 "//mojo/public/cpp/bindings",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 data = [ 992 data = [
990 "test/data/", 993 "test/data/",
991 994
992 # Needed for isolate script to execute. 995 # Needed for isolate script to execute.
993 "//testing/scripts/common.py", 996 "//testing/scripts/common.py",
994 "//testing/xvfb.py", 997 "//testing/xvfb.py",
995 "//testing/scripts/run_gtest_perf_test.py", 998 "//testing/scripts/run_gtest_perf_test.py",
996 "//tools/perf/generate_legacy_perf_dashboard_json.py", 999 "//tools/perf/generate_legacy_perf_dashboard_json.py",
997 ] 1000 ]
998 } 1001 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698