| 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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 "animation/animation_timeline_unittest.cc", | 808 "animation/animation_timeline_unittest.cc", |
| 809 "animation/animation_unittest.cc", | 809 "animation/animation_unittest.cc", |
| 810 "animation/element_animations_unittest.cc", | 810 "animation/element_animations_unittest.cc", |
| 811 "animation/keyframed_animation_curve_unittest.cc", | 811 "animation/keyframed_animation_curve_unittest.cc", |
| 812 "animation/scroll_offset_animation_curve_unittest.cc", | 812 "animation/scroll_offset_animation_curve_unittest.cc", |
| 813 "animation/transform_operations_unittest.cc", | 813 "animation/transform_operations_unittest.cc", |
| 814 "base/contiguous_container_unittest.cc", | 814 "base/contiguous_container_unittest.cc", |
| 815 "base/delayed_unique_notifier_unittest.cc", | 815 "base/delayed_unique_notifier_unittest.cc", |
| 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/list_container_unittest.cc", | 819 "base/list_container_unittest.cc", |
| 819 "base/math_util_unittest.cc", | 820 "base/math_util_unittest.cc", |
| 820 "base/random_access_list_container_unittest.cc", | 821 "base/random_access_list_container_unittest.cc", |
| 821 "base/region_unittest.cc", | 822 "base/region_unittest.cc", |
| 822 "base/rolling_time_delta_history_unittest.cc", | 823 "base/rolling_time_delta_history_unittest.cc", |
| 823 "base/rtree_unittest.cc", | 824 "base/rtree_unittest.cc", |
| 824 "base/simple_enclosed_region_unittest.cc", | 825 "base/simple_enclosed_region_unittest.cc", |
| 825 "base/tiling_data_unittest.cc", | 826 "base/tiling_data_unittest.cc", |
| 826 "base/unique_notifier_unittest.cc", | 827 "base/unique_notifier_unittest.cc", |
| 827 "blimp/picture_data_conversions_unittest.cc", | 828 "blimp/picture_data_conversions_unittest.cc", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1053 "//ui/gl:test_support", | 1054 "//ui/gl:test_support", |
| 1054 ] | 1055 ] |
| 1055 | 1056 |
| 1056 # This target should not require the Chrome executable to run. | 1057 # This target should not require the Chrome executable to run. |
| 1057 assert_no_deps = [ "//chrome" ] | 1058 assert_no_deps = [ "//chrome" ] |
| 1058 | 1059 |
| 1059 data = [ | 1060 data = [ |
| 1060 "test/data/", | 1061 "test/data/", |
| 1061 ] | 1062 ] |
| 1062 } | 1063 } |
| OLD | NEW |