| 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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 "base/float_quad_unittest.cc", | 816 "base/float_quad_unittest.cc", |
| 817 "base/histograms_unittest.cc", | 817 "base/histograms_unittest.cc", |
| 818 "base/index_rect_unittest.cc", | 818 "base/index_rect_unittest.cc", |
| 819 "base/list_container_unittest.cc", | 819 "base/list_container_unittest.cc", |
| 820 "base/math_util_unittest.cc", | 820 "base/math_util_unittest.cc", |
| 821 "base/random_access_list_container_unittest.cc", | 821 "base/random_access_list_container_unittest.cc", |
| 822 "base/region_unittest.cc", | 822 "base/region_unittest.cc", |
| 823 "base/rolling_time_delta_history_unittest.cc", | 823 "base/rolling_time_delta_history_unittest.cc", |
| 824 "base/rtree_unittest.cc", | 824 "base/rtree_unittest.cc", |
| 825 "base/simple_enclosed_region_unittest.cc", | 825 "base/simple_enclosed_region_unittest.cc", |
| 826 "base/spiral_iterator_unittest.cc", |
| 826 "base/tiling_data_unittest.cc", | 827 "base/tiling_data_unittest.cc", |
| 827 "base/unique_notifier_unittest.cc", | 828 "base/unique_notifier_unittest.cc", |
| 828 "blimp/picture_data_conversions_unittest.cc", | 829 "blimp/picture_data_conversions_unittest.cc", |
| 829 "debug/layer_tree_debug_state_unittest.cc", | 830 "debug/layer_tree_debug_state_unittest.cc", |
| 830 "debug/micro_benchmark_controller_unittest.cc", | 831 "debug/micro_benchmark_controller_unittest.cc", |
| 831 "debug/rendering_stats_unittest.cc", | 832 "debug/rendering_stats_unittest.cc", |
| 832 "input/layer_selection_bound_unittest.cc", | 833 "input/layer_selection_bound_unittest.cc", |
| 833 "input/scroll_state_unittest.cc", | 834 "input/scroll_state_unittest.cc", |
| 834 "input/scrollbar_animation_controller_linear_fade_unittest.cc", | 835 "input/scrollbar_animation_controller_linear_fade_unittest.cc", |
| 835 "input/scrollbar_animation_controller_thinning_unittest.cc", | 836 "input/scrollbar_animation_controller_thinning_unittest.cc", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 "//ui/gl:test_support", | 1055 "//ui/gl:test_support", |
| 1055 ] | 1056 ] |
| 1056 | 1057 |
| 1057 # This target should not require the Chrome executable to run. | 1058 # This target should not require the Chrome executable to run. |
| 1058 assert_no_deps = [ "//chrome" ] | 1059 assert_no_deps = [ "//chrome" ] |
| 1059 | 1060 |
| 1060 data = [ | 1061 data = [ |
| 1061 "test/data/", | 1062 "test/data/", |
| 1062 ] | 1063 ] |
| 1063 } | 1064 } |
| OLD | NEW |