| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "//base/test:test_support", | 266 "//base/test:test_support", |
| 267 "//gpu/command_buffer/service", | 267 "//gpu/command_buffer/service", |
| 268 "//testing/gmock", | 268 "//testing/gmock", |
| 269 "//testing/gtest", | 269 "//testing/gtest", |
| 270 "//testing/perf", | 270 "//testing/perf", |
| 271 "//ui/gfx/geometry", | 271 "//ui/gfx/geometry", |
| 272 "//ui/gl", | 272 "//ui/gl", |
| 273 ] | 273 ] |
| 274 } | 274 } |
| 275 | 275 |
| 276 # TODO(GYP): Delete this after we've converted everything to GN. |
| 277 # The _run targets exist only for compatibility w/ GYP. |
| 278 group("angle_unittests_run") { |
| 279 testonly = true |
| 280 deps = [ |
| 281 ":angle_unittests", |
| 282 ] |
| 283 } |
| 284 |
| 276 test("angle_unittests") { | 285 test("angle_unittests") { |
| 277 sources = [ | 286 sources = [ |
| 278 "angle_unittest_main.cc", | 287 "angle_unittest_main.cc", |
| 279 ] | 288 ] |
| 280 | 289 |
| 281 deps = [ | 290 deps = [ |
| 282 "//base", | 291 "//base", |
| 283 "//base/test:test_support", | 292 "//base/test:test_support", |
| 284 "//base/third_party/dynamic_annotations", | 293 "//base/third_party/dynamic_annotations", |
| 285 "//testing/gmock", | 294 "//testing/gmock", |
| 286 "//testing/gtest", | 295 "//testing/gtest", |
| 287 "//third_party/angle:translator_static", | 296 "//third_party/angle:translator_static", |
| 288 ] | 297 ] |
| 289 } | 298 } |
| OLD | NEW |