| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |