| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 public_deps = [ | 676 public_deps = [ |
| 677 ":cc", | 677 ":cc", |
| 678 "//gpu:test_support", | 678 "//gpu:test_support", |
| 679 ] | 679 ] |
| 680 deps = [ | 680 deps = [ |
| 681 "//base", | 681 "//base", |
| 682 "//base/test:test_support", | 682 "//base/test:test_support", |
| 683 "//base/third_party/dynamic_annotations", | 683 "//base/third_party/dynamic_annotations", |
| 684 "//cc/surfaces", | 684 "//cc/surfaces", |
| 685 "//cc/surfaces:surface_id", | 685 "//cc/surfaces:surface_id", |
| 686 "//gpu/command_buffer/client:gl_in_process_context", |
| 686 "//gpu/command_buffer/client:gles2_c_lib", | 687 "//gpu/command_buffer/client:gles2_c_lib", |
| 687 "//gpu/command_buffer/client:gles2_implementation", | 688 "//gpu/command_buffer/client:gles2_implementation", |
| 688 "//gpu/command_buffer/client:gl_in_process_context", | |
| 689 "//gpu/command_buffer/common:gles2_utils", | 689 "//gpu/command_buffer/common:gles2_utils", |
| 690 "//gpu/skia_bindings", | 690 "//gpu/skia_bindings", |
| 691 "//media", | 691 "//media", |
| 692 "//skia", | 692 "//skia", |
| 693 "//testing/gmock", | 693 "//testing/gmock", |
| 694 "//testing/gtest", | 694 "//testing/gtest", |
| 695 "//ui/gfx", | 695 "//ui/gfx", |
| 696 "//ui/gfx:test_support", |
| 696 "//ui/gfx/geometry", | 697 "//ui/gfx/geometry", |
| 697 "//ui/gfx:test_support", | |
| 698 "//ui/gl", | 698 "//ui/gl", |
| 699 "//ui/gl:test_support", | 699 "//ui/gl:test_support", |
| 700 ] | 700 ] |
| 701 | 701 |
| 702 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 702 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 703 deps += [ "//third_party/mesa:osmesa" ] | 703 deps += [ "//third_party/mesa:osmesa" ] |
| 704 } | 704 } |
| 705 } | 705 } |
| 706 | 706 |
| 707 # TODO(GYP): Delete this after we've converted everything to GN. | 707 # TODO(GYP): Delete this after we've converted everything to GN. |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 "//cc/surfaces:surface_id", | 879 "//cc/surfaces:surface_id", |
| 880 "//gpu", | 880 "//gpu", |
| 881 "//gpu:test_support", | 881 "//gpu:test_support", |
| 882 "//gpu/command_buffer/client:gles2_interface", | 882 "//gpu/command_buffer/client:gles2_interface", |
| 883 "//gpu/command_buffer/common:gles2_utils", | 883 "//gpu/command_buffer/common:gles2_utils", |
| 884 "//media", | 884 "//media", |
| 885 "//testing/gmock", | 885 "//testing/gmock", |
| 886 "//testing/gtest", | 886 "//testing/gtest", |
| 887 "//ui/events:events_base", | 887 "//ui/events:events_base", |
| 888 "//ui/gfx", | 888 "//ui/gfx", |
| 889 "//ui/gfx:test_support", |
| 889 "//ui/gfx/geometry", | 890 "//ui/gfx/geometry", |
| 890 "//ui/gfx:test_support", | |
| 891 "//ui/gl", | 891 "//ui/gl", |
| 892 "//ui/gl:test_support", | 892 "//ui/gl:test_support", |
| 893 ] | 893 ] |
| 894 | 894 |
| 895 data_deps = [ | 895 data_deps = [ |
| 896 "//third_party/mesa:osmesa", | 896 "//third_party/mesa:osmesa", |
| 897 ] | 897 ] |
| 898 } | 898 } |
| 899 | 899 |
| 900 test("cc_perftests") { | 900 test("cc_perftests") { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "//ui/gl", | 935 "//ui/gl", |
| 936 "//ui/gl:test_support", | 936 "//ui/gl:test_support", |
| 937 ] | 937 ] |
| 938 | 938 |
| 939 if (is_android) { | 939 if (is_android) { |
| 940 isolate_file = "cc_perftests.isolate" | 940 isolate_file = "cc_perftests.isolate" |
| 941 } | 941 } |
| 942 } | 942 } |
| 943 # When adding support for isolates, please have a look at run-time dependencies | 943 # When adding support for isolates, please have a look at run-time dependencies |
| 944 # in the cc_unittests_run target in cc_tests.gyp. | 944 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |