| 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("//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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 "test/test_web_graphics_context_3d.h", | 720 "test/test_web_graphics_context_3d.h", |
| 721 "test/threaded_channel_for_test.cc", | 721 "test/threaded_channel_for_test.cc", |
| 722 "test/threaded_channel_for_test.h", | 722 "test/threaded_channel_for_test.h", |
| 723 ] | 723 ] |
| 724 | 724 |
| 725 configs += [ "//build/config:precompiled_headers" ] | 725 configs += [ "//build/config:precompiled_headers" ] |
| 726 | 726 |
| 727 public_deps = [ | 727 public_deps = [ |
| 728 ":cc", | 728 ":cc", |
| 729 "//gpu:test_support", | 729 "//gpu:test_support", |
| 730 "//skia", |
| 730 ] | 731 ] |
| 731 deps = [ | 732 deps = [ |
| 732 "//base", | 733 "//base", |
| 733 "//base/test:test_support", | 734 "//base/test:test_support", |
| 734 "//base/third_party/dynamic_annotations", | 735 "//base/third_party/dynamic_annotations", |
| 735 "//cc/proto", | 736 "//cc/proto", |
| 736 "//cc/surfaces", | 737 "//cc/surfaces", |
| 737 "//cc/surfaces:surface_id", | 738 "//cc/surfaces:surface_id", |
| 738 "//gpu/command_buffer/client:gl_in_process_context", | 739 "//gpu/command_buffer/client:gl_in_process_context", |
| 739 "//gpu/command_buffer/client:gles2_c_lib", | 740 "//gpu/command_buffer/client:gles2_c_lib", |
| 740 "//gpu/command_buffer/client:gles2_implementation", | 741 "//gpu/command_buffer/client:gles2_implementation", |
| 741 "//gpu/command_buffer/common:gles2_utils", | 742 "//gpu/command_buffer/common:gles2_utils", |
| 742 "//gpu/skia_bindings", | 743 "//gpu/skia_bindings", |
| 743 "//media", | 744 "//media", |
| 744 "//skia", | |
| 745 "//testing/gmock", | 745 "//testing/gmock", |
| 746 "//testing/gtest", | 746 "//testing/gtest", |
| 747 "//ui/gfx", | 747 "//ui/gfx", |
| 748 "//ui/gfx:test_support", | 748 "//ui/gfx:test_support", |
| 749 "//ui/gfx/geometry", | 749 "//ui/gfx/geometry", |
| 750 "//ui/gl", | 750 "//ui/gl", |
| 751 "//ui/gl:test_support", | 751 "//ui/gl:test_support", |
| 752 ] | 752 ] |
| 753 | 753 |
| 754 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 754 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1007 "//ui/gl", | 1007 "//ui/gl", |
| 1008 "//ui/gl:test_support", | 1008 "//ui/gl:test_support", |
| 1009 ] | 1009 ] |
| 1010 | 1010 |
| 1011 if (is_android) { | 1011 if (is_android) { |
| 1012 isolate_file = "cc_perftests.isolate" | 1012 isolate_file = "cc_perftests.isolate" |
| 1013 } | 1013 } |
| 1014 } | 1014 } |
| 1015 # When adding support for isolates, please have a look at run-time dependencies | 1015 # When adding support for isolates, please have a look at run-time dependencies |
| 1016 # in the cc_unittests_run target in cc_tests.gyp. | 1016 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |