Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Side by Side Diff: cc/BUILD.gn

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed jbudorick's comments. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 "//gpu/command_buffer/common:gles2_utils", 949 "//gpu/command_buffer/common:gles2_utils",
950 "//media", 950 "//media",
951 "//skia", 951 "//skia",
952 "//testing/gmock", 952 "//testing/gmock",
953 "//testing/gtest", 953 "//testing/gtest",
954 "//testing/perf", 954 "//testing/perf",
955 "//ui/gfx", 955 "//ui/gfx",
956 "//ui/gfx/geometry", 956 "//ui/gfx/geometry",
957 "//ui/gl", 957 "//ui/gl",
958 ] 958 ]
959
960 if (is_android) {
961 isolate_file = "cc_perftests.isolate"
962 }
959 } 963 }
960 # When adding support for isolates, please have a look at run-time dependencies 964 # When adding support for isolates, please have a look at run-time dependencies
961 # in the cc_unittests_run target in cc_tests.gyp. 965 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698