Chromium Code Reviews| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 878 "//gpu/command_buffer/common:gles2_utils", | 878 "//gpu/command_buffer/common:gles2_utils", |
| 879 "//media", | 879 "//media", |
| 880 "//testing/gmock", | 880 "//testing/gmock", |
| 881 "//testing/gtest", | 881 "//testing/gtest", |
| 882 "//ui/events:events_base", | 882 "//ui/events:events_base", |
| 883 "//ui/gfx", | 883 "//ui/gfx", |
| 884 "//ui/gfx/geometry", | 884 "//ui/gfx/geometry", |
| 885 "//ui/gfx:test_support", | 885 "//ui/gfx:test_support", |
| 886 "//ui/gl", | 886 "//ui/gl", |
| 887 ] | 887 ] |
| 888 | |
| 889 if (use_x11) { | |
| 890 datadeps += [ "//tools/xdisplaycheck" ] | |
|
danakj
2015/03/05 18:38:39
This seems as wrong as before, as per jamesr's com
sunnyps
2015/03/05 20:44:45
This is a datadep which in gn parlance means a run
| |
| 891 } | |
| 888 } | 892 } |
| 889 | 893 |
| 890 test("cc_perftests") { | 894 test("cc_perftests") { |
| 891 sources = [ | 895 sources = [ |
| 892 "layers/layer_perftest.cc", | 896 "layers/layer_perftest.cc", |
| 893 "layers/picture_layer_impl_perftest.cc", | 897 "layers/picture_layer_impl_perftest.cc", |
| 894 "resources/picture_layer_tiling_perftest.cc", | 898 "resources/picture_layer_tiling_perftest.cc", |
| 895 "resources/picture_pile_impl_perftest.cc", | 899 "resources/picture_pile_impl_perftest.cc", |
| 896 "resources/task_graph_runner_perftest.cc", | 900 "resources/task_graph_runner_perftest.cc", |
| 897 "resources/tile_manager_perftest.cc", | 901 "resources/tile_manager_perftest.cc", |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 916 "//media", | 920 "//media", |
| 917 "//skia", | 921 "//skia", |
| 918 "//testing/gmock", | 922 "//testing/gmock", |
| 919 "//testing/gtest", | 923 "//testing/gtest", |
| 920 "//testing/perf", | 924 "//testing/perf", |
| 921 "//ui/gfx", | 925 "//ui/gfx", |
| 922 "//ui/gfx/geometry", | 926 "//ui/gfx/geometry", |
| 923 "//ui/gl", | 927 "//ui/gl", |
| 924 ] | 928 ] |
| 925 } | 929 } |
| OLD | NEW |