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