| OLD | NEW |
| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 ":cc", | 798 ":cc", |
| 799 "//gpu:test_support", | 799 "//gpu:test_support", |
| 800 ] | 800 ] |
| 801 deps = [ | 801 deps = [ |
| 802 "//base", | 802 "//base", |
| 803 "//base/test:test_support", | 803 "//base/test:test_support", |
| 804 "//base/third_party/dynamic_annotations", | 804 "//base/third_party/dynamic_annotations", |
| 805 "//cc/proto", | 805 "//cc/proto", |
| 806 "//cc/surfaces", | 806 "//cc/surfaces", |
| 807 "//cc/surfaces:surface_id", | 807 "//cc/surfaces:surface_id", |
| 808 "//gpu/command_buffer/client:gl_in_process_context", | |
| 809 "//gpu/command_buffer/client:gles2_c_lib", | 808 "//gpu/command_buffer/client:gles2_c_lib", |
| 810 "//gpu/command_buffer/client:gles2_implementation", | 809 "//gpu/command_buffer/client:gles2_implementation", |
| 811 "//gpu/command_buffer/common:gles2_utils", | 810 "//gpu/command_buffer/common:gles2_utils", |
| 811 "//gpu/ipc:gl_in_process_context", |
| 812 "//gpu/skia_bindings", | 812 "//gpu/skia_bindings", |
| 813 "//media", | 813 "//media", |
| 814 "//skia", | 814 "//skia", |
| 815 "//testing/gmock", | 815 "//testing/gmock", |
| 816 "//testing/gtest", | 816 "//testing/gtest", |
| 817 "//ui/gfx", | 817 "//ui/gfx", |
| 818 "//ui/gfx:test_support", | 818 "//ui/gfx:test_support", |
| 819 "//ui/gfx/geometry", | 819 "//ui/gfx/geometry", |
| 820 "//ui/gl", | 820 "//ui/gl", |
| 821 "//ui/gl:test_support", | 821 "//ui/gl:test_support", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 data = [ | 1092 data = [ |
| 1093 "test/data/", | 1093 "test/data/", |
| 1094 | 1094 |
| 1095 # Needed for isolate script to execute. | 1095 # Needed for isolate script to execute. |
| 1096 "//testing/scripts/common.py", | 1096 "//testing/scripts/common.py", |
| 1097 "//testing/xvfb.py", | 1097 "//testing/xvfb.py", |
| 1098 "//testing/scripts/run_gtest_perf_test.py", | 1098 "//testing/scripts/run_gtest_perf_test.py", |
| 1099 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1099 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1100 ] | 1100 ] |
| 1101 } | 1101 } |
| OLD | NEW |