| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "//base", | 305 "//base", |
| 306 "//base/test:test_support", | 306 "//base/test:test_support", |
| 307 "//gpu/command_buffer/service", | 307 "//gpu/command_buffer/service", |
| 308 "//testing/gmock", | 308 "//testing/gmock", |
| 309 "//testing/gtest", | 309 "//testing/gtest", |
| 310 "//testing/perf", | 310 "//testing/perf", |
| 311 "//ui/gfx/geometry", | 311 "//ui/gfx/geometry", |
| 312 "//ui/gl", | 312 "//ui/gl", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| 315 | |
| 316 if (is_win || is_linux || is_mac) { | |
| 317 # TODO(GYP): Delete this after we've converted everything to GN. | |
| 318 # The _run targets exist only for compatibility w/ GYP. | |
| 319 group("angle_end2end_tests_run") { | |
| 320 testonly = true | |
| 321 deps = [ | |
| 322 "//third_party/angle/src/tests:angle_end2end_tests", | |
| 323 ] | |
| 324 } | |
| 325 } | |
| OLD | NEW |