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

Side by Side Diff: gpu/BUILD.gn

Issue 871093002: gpu: Perf test to check costs of texture upload at different stages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Geometry dependency added to build files. Created 5 years, 10 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
« no previous file with comments | « no previous file | gpu/gpu.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 "//ui/gfx", 237 "//ui/gfx",
238 "//ui/gfx:test_support", 238 "//ui/gfx:test_support",
239 "//ui/gfx/geometry", 239 "//ui/gfx/geometry",
240 "//ui/gl", 240 "//ui/gl",
241 "//gpu/command_buffer/common:gles2_utils", 241 "//gpu/command_buffer/common:gles2_utils",
242 "//gpu/command_buffer/client:gles2_c_lib", 242 "//gpu/command_buffer/client:gles2_c_lib",
243 "//gpu/command_buffer/client:gles2_implementation", 243 "//gpu/command_buffer/client:gles2_implementation",
244 ] 244 ]
245 } 245 }
246 246
247 test("gpu_perftests") {
248 sources = [
249 "perftests/run_all_tests.cc",
250 "perftests/texture_upload_perftest.cc",
251 ]
252
253 deps = [
254 "//base",
255 "//base/test:test_support",
256 "//testing/gtest",
257 "//testing/perf",
258 "//ui/gfx/geometry",
259 "//ui/gl",
260 ]
261 }
262
247 test("angle_unittests") { 263 test("angle_unittests") {
248 sources = [ 264 sources = [
249 "angle_unittest_main.cc", 265 "angle_unittest_main.cc",
250 ] 266 ]
251 267
252 deps = [ 268 deps = [
253 "//base", 269 "//base",
254 "//base/test:test_support", 270 "//base/test:test_support",
255 "//base/third_party/dynamic_annotations", 271 "//base/third_party/dynamic_annotations",
256 "//testing/gmock", 272 "//testing/gmock",
257 "//testing/gtest", 273 "//testing/gtest",
258 "//third_party/angle:translator_static", 274 "//third_party/angle:translator_static",
259 ] 275 ]
260 } 276 }
OLDNEW
« no previous file with comments | « no previous file | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698