| 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 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 if (is_mac) { | 7 if (is_mac) { |
| 8 import("//build/config/mac/mac_sdk.gni") | 8 import("//build/config/mac/mac_sdk.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "//testing/gtest", | 144 "//testing/gtest", |
| 145 "//third_party/mesa:mesa_headers", | 145 "//third_party/mesa:mesa_headers", |
| 146 "//ui/gfx:test_support", | 146 "//ui/gfx:test_support", |
| 147 "//ui/gl:gl_unittest_utils", | 147 "//ui/gl:gl_unittest_utils", |
| 148 "//ui/gl:test_support", | 148 "//ui/gl:test_support", |
| 149 "//url", | 149 "//url", |
| 150 ] | 150 ] |
| 151 libs = [] | 151 libs = [] |
| 152 if (is_android) { | 152 if (is_android) { |
| 153 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] | 153 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] |
| 154 deps += [ "//ui/android:ui_java" ] |
| 154 } | 155 } |
| 155 if (is_mac) { | 156 if (is_mac) { |
| 156 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 157 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 157 } | 158 } |
| 158 if (use_ozone) { | 159 if (use_ozone) { |
| 159 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 160 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 160 deps += [ "//ui/ozone" ] | 161 deps += [ "//ui/ozone" ] |
| 161 } | 162 } |
| 162 } | 163 } |
| OLD | NEW |