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 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 "//gpu/command_buffer/common:gles2_utils", | 955 "//gpu/command_buffer/common:gles2_utils", |
956 "//media", | 956 "//media", |
957 "//skia", | 957 "//skia", |
958 "//testing/gmock", | 958 "//testing/gmock", |
959 "//testing/gtest", | 959 "//testing/gtest", |
960 "//testing/perf", | 960 "//testing/perf", |
961 "//ui/gfx", | 961 "//ui/gfx", |
962 "//ui/gfx/geometry", | 962 "//ui/gfx/geometry", |
963 "//ui/gl", | 963 "//ui/gl", |
964 ] | 964 ] |
| 965 |
| 966 if (is_android) { |
| 967 isolate_file = "cc_perftests.isolate" |
| 968 } |
965 } | 969 } |
966 # When adding support for isolates, please have a look at run-time dependencies | 970 # When adding support for isolates, please have a look at run-time dependencies |
967 # in the cc_unittests_run target in cc_tests.gyp. | 971 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |