| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 test("ozone_gl_unittests") { | 7 test("ozone_gl_unittests") { |
| 8 sources = [ | 8 sources = [ |
| 9 "gl_image_ozone_native_pixmap_unittest.cc", | 9 "gl_image_ozone_native_pixmap_unittest.cc", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 "//base/test:test_support", | 13 "//base/test:test_support", |
| 14 "//testing/gtest", | 14 "//testing/gtest", |
| 15 "//ui/gfx", | 15 "//ui/gfx", |
| 16 "//ui/gl:run_all_unittests", | 16 "//ui/gl:run_all_unittests", |
| 17 "//ui/gl:test_support", | 17 "//ui/gl:test_support", |
| 18 "//ui/ozone", | 18 "//ui/ozone:platform", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 data_deps = [ | 21 data_deps = [ |
| 22 "//third_party/mesa:osmesa", | 22 "//third_party/mesa:osmesa", |
| 23 ] | 23 ] |
| 24 } | 24 } |
| OLD | NEW |