| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 sources = [ | 129 sources = [ |
| 130 "gpu_channel_manager_unittest.cc", | 130 "gpu_channel_manager_unittest.cc", |
| 131 "gpu_channel_test_common.cc", | 131 "gpu_channel_test_common.cc", |
| 132 "gpu_channel_test_common.h", | 132 "gpu_channel_test_common.h", |
| 133 "gpu_channel_unittest.cc", | 133 "gpu_channel_unittest.cc", |
| 134 ] | 134 ] |
| 135 deps = [ | 135 deps = [ |
| 136 ":service", | 136 ":service", |
| 137 ":test_support", | 137 ":test_support", |
| 138 "//base", | 138 "//base", |
| 139 "//base/test:run_all_unittests", | |
| 140 "//base/test:test_support", | 139 "//base/test:test_support", |
| 141 "//gpu/command_buffer/common", | 140 "//gpu/command_buffer/common", |
| 142 "//gpu/command_buffer/common:gles2_utils", | 141 "//gpu/command_buffer/common:gles2_utils", |
| 143 "//gpu/command_buffer/service", | 142 "//gpu/command_buffer/service", |
| 144 "//gpu/config", | 143 "//gpu/config", |
| 145 "//gpu/ipc/common", | 144 "//gpu/ipc/common", |
| 145 "//ipc:run_all_unittests", |
| 146 "//ipc:test_support", | 146 "//ipc:test_support", |
| 147 "//skia", | 147 "//skia", |
| 148 "//testing/gmock", | 148 "//testing/gmock", |
| 149 "//testing/gtest", | 149 "//testing/gtest", |
| 150 "//third_party/mesa:mesa_headers", | 150 "//third_party/mesa:mesa_headers", |
| 151 "//ui/gfx:test_support", | 151 "//ui/gfx:test_support", |
| 152 "//ui/gl:gl_unittest_utils", | 152 "//ui/gl:gl_unittest_utils", |
| 153 "//ui/gl:test_support", | 153 "//ui/gl:test_support", |
| 154 "//url", | 154 "//url", |
| 155 ] | 155 ] |
| 156 libs = [] | 156 libs = [] |
| 157 if (is_android) { | 157 if (is_android) { |
| 158 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] | 158 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] |
| 159 deps += [ "//ui/android:ui_java" ] | 159 deps += [ "//ui/android:ui_java" ] |
| 160 } | 160 } |
| 161 if (is_mac) { | 161 if (is_mac) { |
| 162 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 162 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 163 } | 163 } |
| 164 if (use_ozone) { | 164 if (use_ozone) { |
| 165 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 165 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 166 deps += [ "//ui/ozone" ] | 166 deps += [ "//ui/ozone" ] |
| 167 } | 167 } |
| 168 } | 168 } |
| OLD | NEW |