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

Side by Side Diff: gpu/BUILD.gn

Issue 974913003: gpu: Run texture upload perf test with different texture formats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move format check closer to where the format is used to determine the number of bits per pixel. Created 5 years, 9 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 sources = [ 254 sources = [
255 "perftests/measurements.cc", 255 "perftests/measurements.cc",
256 "perftests/run_all_tests.cc", 256 "perftests/run_all_tests.cc",
257 "perftests/texture_upload_perftest.cc", 257 "perftests/texture_upload_perftest.cc",
258 ] 258 ]
259 259
260 deps = [ 260 deps = [
261 "//base", 261 "//base",
262 "//base/test:test_support", 262 "//base/test:test_support",
263 "//gpu/command_buffer/service", 263 "//gpu/command_buffer/service",
264 "//testing/gmock",
264 "//testing/gtest", 265 "//testing/gtest",
265 "//testing/perf", 266 "//testing/perf",
266 "//ui/gfx/geometry", 267 "//ui/gfx/geometry",
267 "//ui/gl", 268 "//ui/gl",
268 ] 269 ]
269 } 270 }
270 271
271 test("angle_unittests") { 272 test("angle_unittests") {
272 sources = [ 273 sources = [
273 "angle_unittest_main.cc", 274 "angle_unittest_main.cc",
274 ] 275 ]
275 276
276 deps = [ 277 deps = [
277 "//base", 278 "//base",
278 "//base/test:test_support", 279 "//base/test:test_support",
279 "//base/third_party/dynamic_annotations", 280 "//base/third_party/dynamic_annotations",
280 "//testing/gmock", 281 "//testing/gmock",
281 "//testing/gtest", 282 "//testing/gtest",
282 "//third_party/angle:translator_static", 283 "//third_party/angle:translator_static",
283 ] 284 ]
284 } 285 }
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