| 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 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 deps = [ | 975 deps = [ |
| 976 ":cc", | 976 ":cc", |
| 977 ":test_support", | 977 ":test_support", |
| 978 "//base", | 978 "//base", |
| 979 "//base/test:test_support", | 979 "//base/test:test_support", |
| 980 "//cc/surfaces", | 980 "//cc/surfaces", |
| 981 "//cc/surfaces:surface_id", | 981 "//cc/surfaces:surface_id", |
| 982 "//gpu", | 982 "//gpu", |
| 983 "//gpu:test_support", | 983 "//gpu:test_support", |
| 984 "//gpu/command_buffer/common:gles2_utils", | 984 "//gpu/command_buffer/common:gles2_utils", |
| 985 "//gpu/skia_bindings", |
| 985 "//media", | 986 "//media", |
| 986 "//skia", | 987 "//skia", |
| 987 "//testing/gmock", | 988 "//testing/gmock", |
| 988 "//testing/gtest", | 989 "//testing/gtest", |
| 989 "//testing/perf", | 990 "//testing/perf", |
| 990 "//ui/gfx", | 991 "//ui/gfx", |
| 991 "//ui/gfx/geometry", | 992 "//ui/gfx/geometry", |
| 992 "//ui/gl", | 993 "//ui/gl", |
| 993 "//ui/gl:test_support", | 994 "//ui/gl:test_support", |
| 994 ] | 995 ] |
| 995 | 996 |
| 996 if (is_android) { | 997 if (is_android) { |
| 997 isolate_file = "cc_perftests.isolate" | 998 isolate_file = "cc_perftests.isolate" |
| 998 } | 999 } |
| 999 } | 1000 } |
| 1000 # When adding support for isolates, please have a look at run-time dependencies | 1001 # When adding support for isolates, please have a look at run-time dependencies |
| 1001 # in the cc_unittests_run target in cc_tests.gyp. | 1002 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |