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 # 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 "//ui/gfx/geometry", | 242 "//ui/gfx/geometry", |
243 "//ui/gl", | 243 "//ui/gl", |
244 "//gpu/command_buffer/common:gles2_utils", | 244 "//gpu/command_buffer/common:gles2_utils", |
245 "//gpu/command_buffer/client:gles2_c_lib", | 245 "//gpu/command_buffer/client:gles2_c_lib", |
246 "//gpu/command_buffer/client:gles2_implementation", | 246 "//gpu/command_buffer/client:gles2_implementation", |
247 ] | 247 ] |
248 } | 248 } |
249 | 249 |
250 test("gpu_perftests") { | 250 test("gpu_perftests") { |
251 sources = [ | 251 sources = [ |
| 252 "perftests/measurements.cc", |
252 "perftests/run_all_tests.cc", | 253 "perftests/run_all_tests.cc", |
253 "perftests/texture_upload_perftest.cc", | 254 "perftests/texture_upload_perftest.cc", |
254 ] | 255 ] |
255 | 256 |
256 deps = [ | 257 deps = [ |
257 "//base", | 258 "//base", |
258 "//base/test:test_support", | 259 "//base/test:test_support", |
| 260 "//gpu/command_buffer/service", |
259 "//testing/gtest", | 261 "//testing/gtest", |
260 "//testing/perf", | 262 "//testing/perf", |
261 "//ui/gfx/geometry", | 263 "//ui/gfx/geometry", |
262 "//ui/gl", | 264 "//ui/gl", |
263 ] | 265 ] |
264 } | 266 } |
265 | 267 |
266 test("angle_unittests") { | 268 test("angle_unittests") { |
267 sources = [ | 269 sources = [ |
268 "angle_unittest_main.cc", | 270 "angle_unittest_main.cc", |
269 ] | 271 ] |
270 | 272 |
271 deps = [ | 273 deps = [ |
272 "//base", | 274 "//base", |
273 "//base/test:test_support", | 275 "//base/test:test_support", |
274 "//base/third_party/dynamic_annotations", | 276 "//base/third_party/dynamic_annotations", |
275 "//testing/gmock", | 277 "//testing/gmock", |
276 "//testing/gtest", | 278 "//testing/gtest", |
277 "//third_party/angle:translator_static", | 279 "//third_party/angle:translator_static", |
278 ] | 280 ] |
279 } | 281 } |
280 } | 282 } |
OLD | NEW |