| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 test("cc_unittests") { | 761 test("cc_unittests") { |
| 762 sources = [ | 762 sources = [ |
| 763 "animation/animation_unittest.cc", | 763 "animation/animation_unittest.cc", |
| 764 "animation/keyframed_animation_curve_unittest.cc", | 764 "animation/keyframed_animation_curve_unittest.cc", |
| 765 "animation/layer_animation_controller_unittest.cc", | 765 "animation/layer_animation_controller_unittest.cc", |
| 766 "animation/scroll_offset_animation_curve_unittest.cc", | 766 "animation/scroll_offset_animation_curve_unittest.cc", |
| 767 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", | 767 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", |
| 768 "animation/scrollbar_animation_controller_thinning_unittest.cc", | 768 "animation/scrollbar_animation_controller_thinning_unittest.cc", |
| 769 "animation/transform_operations_unittest.cc", | 769 "animation/transform_operations_unittest.cc", |
| 770 "base/float_quad_unittest.cc", | 770 "base/float_quad_unittest.cc", |
| 771 "base/histograms_unittest.cc", |
| 771 "base/math_util_unittest.cc", | 772 "base/math_util_unittest.cc", |
| 772 "base/region_unittest.cc", | 773 "base/region_unittest.cc", |
| 773 "base/rolling_time_delta_history_unittest.cc", | 774 "base/rolling_time_delta_history_unittest.cc", |
| 774 "base/scoped_ptr_vector_unittest.cc", | 775 "base/scoped_ptr_vector_unittest.cc", |
| 775 "base/simple_enclosed_region_unittest.cc", | 776 "base/simple_enclosed_region_unittest.cc", |
| 776 "base/tiling_data_unittest.cc", | 777 "base/tiling_data_unittest.cc", |
| 777 "base/util_unittest.cc", | 778 "base/util_unittest.cc", |
| 778 "debug/frame_timing_tracker_unittest.cc", | 779 "debug/frame_timing_tracker_unittest.cc", |
| 779 "debug/micro_benchmark_controller_unittest.cc", | 780 "debug/micro_benchmark_controller_unittest.cc", |
| 780 "input/top_controls_manager_unittest.cc", | 781 "input/top_controls_manager_unittest.cc", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 "//testing/gmock", | 953 "//testing/gmock", |
| 953 "//testing/gtest", | 954 "//testing/gtest", |
| 954 "//testing/perf", | 955 "//testing/perf", |
| 955 "//ui/gfx", | 956 "//ui/gfx", |
| 956 "//ui/gfx/geometry", | 957 "//ui/gfx/geometry", |
| 957 "//ui/gl", | 958 "//ui/gl", |
| 958 ] | 959 ] |
| 959 } | 960 } |
| 960 # When adding support for isolates, please have a look at run-time dependencies | 961 # When adding support for isolates, please have a look at run-time dependencies |
| 961 # in the cc_unittests_run target in cc_tests.gyp. | 962 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |