| 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 "test/test_texture.cc", | 690 "test/test_texture.cc", |
| 691 "test/test_texture.h", | 691 "test/test_texture.h", |
| 692 "test/test_tile_priorities.cc", | 692 "test/test_tile_priorities.cc", |
| 693 "test/test_tile_priorities.h", | 693 "test/test_tile_priorities.h", |
| 694 "test/test_web_graphics_context_3d.cc", | 694 "test/test_web_graphics_context_3d.cc", |
| 695 "test/test_web_graphics_context_3d.h", | 695 "test/test_web_graphics_context_3d.h", |
| 696 "test/tiled_layer_test_common.cc", | 696 "test/tiled_layer_test_common.cc", |
| 697 "test/tiled_layer_test_common.h", | 697 "test/tiled_layer_test_common.h", |
| 698 ] | 698 ] |
| 699 | 699 |
| 700 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 701 |
| 700 include_dirs = [ | 702 include_dirs = [ |
| 701 ".", | 703 ".", |
| 702 "test", | 704 "test", |
| 703 ] | 705 ] |
| 704 | 706 |
| 705 public_deps = [ | 707 public_deps = [ |
| 706 ":cc", | 708 ":cc", |
| 707 "//gpu:test_support", | 709 "//gpu:test_support", |
| 708 ] | 710 ] |
| 709 deps = [ | 711 deps = [ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 "//media", | 916 "//media", |
| 915 "//skia", | 917 "//skia", |
| 916 "//testing/gmock", | 918 "//testing/gmock", |
| 917 "//testing/gtest", | 919 "//testing/gtest", |
| 918 "//testing/perf", | 920 "//testing/perf", |
| 919 "//ui/gfx", | 921 "//ui/gfx", |
| 920 "//ui/gfx/geometry", | 922 "//ui/gfx/geometry", |
| 921 "//ui/gl", | 923 "//ui/gl", |
| 922 ] | 924 ] |
| 923 } | 925 } |
| OLD | NEW |