| 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 testonly = true | 597 testonly = true |
| 598 sources = [ | 598 sources = [ |
| 599 "test/animation_test_common.cc", | 599 "test/animation_test_common.cc", |
| 600 "test/animation_test_common.h", | 600 "test/animation_test_common.h", |
| 601 "test/animation_timelines_test_common.cc", | 601 "test/animation_timelines_test_common.cc", |
| 602 "test/animation_timelines_test_common.h", | 602 "test/animation_timelines_test_common.h", |
| 603 "test/begin_frame_args_test.cc", | 603 "test/begin_frame_args_test.cc", |
| 604 "test/begin_frame_args_test.h", | 604 "test/begin_frame_args_test.h", |
| 605 "test/begin_frame_source_test.cc", | 605 "test/begin_frame_source_test.cc", |
| 606 "test/begin_frame_source_test.h", | 606 "test/begin_frame_source_test.h", |
| 607 "test/failure_output_surface.cc", |
| 608 "test/failure_output_surface.h", |
| 607 "test/fake_channel_impl.cc", | 609 "test/fake_channel_impl.cc", |
| 608 "test/fake_channel_impl.h", | 610 "test/fake_channel_impl.h", |
| 609 "test/fake_client_picture_cache.cc", | 611 "test/fake_client_picture_cache.cc", |
| 610 "test/fake_client_picture_cache.h", | 612 "test/fake_client_picture_cache.h", |
| 611 "test/fake_content_layer_client.cc", | 613 "test/fake_content_layer_client.cc", |
| 612 "test/fake_content_layer_client.h", | 614 "test/fake_content_layer_client.h", |
| 613 "test/fake_engine_picture_cache.cc", | 615 "test/fake_engine_picture_cache.cc", |
| 614 "test/fake_engine_picture_cache.h", | 616 "test/fake_engine_picture_cache.h", |
| 615 "test/fake_external_begin_frame_source.cc", | 617 "test/fake_external_begin_frame_source.cc", |
| 616 "test/fake_external_begin_frame_source.h", | 618 "test/fake_external_begin_frame_source.h", |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 "//ui/gfx/geometry", | 1039 "//ui/gfx/geometry", |
| 1038 "//ui/gl", | 1040 "//ui/gl", |
| 1039 "//ui/gl:test_support", | 1041 "//ui/gl:test_support", |
| 1040 ] | 1042 ] |
| 1041 | 1043 |
| 1042 # This target should not require the Chrome executable to run. | 1044 # This target should not require the Chrome executable to run. |
| 1043 assert_no_deps = [ "//chrome" ] | 1045 assert_no_deps = [ "//chrome" ] |
| 1044 } | 1046 } |
| 1045 # When adding support for isolates, please have a look at run-time dependencies | 1047 # When adding support for isolates, please have a look at run-time dependencies |
| 1046 # in the cc_unittests_run target in cc_tests.gyp. | 1048 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |