| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
| 8 'build_angle_deqp_tests%': 0, | 8 'build_angle_deqp_tests%': 0, |
| 9 }, | 9 }, |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'config/gpu_test_expectations_parser_unittest.cc', | 275 'config/gpu_test_expectations_parser_unittest.cc', |
| 276 'config/gpu_util_unittest.cc', | 276 'config/gpu_util_unittest.cc', |
| 277 'ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc', | 277 'ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc', |
| 278 'ipc/client/gpu_memory_buffer_impl_test_template.h', | 278 'ipc/client/gpu_memory_buffer_impl_test_template.h', |
| 279 ], | 279 ], |
| 280 'conditions': [ | 280 'conditions': [ |
| 281 ['OS == "android"', { | 281 ['OS == "android"', { |
| 282 'dependencies': [ | 282 'dependencies': [ |
| 283 '../testing/android/native_test.gyp:native_test_native_code', | 283 '../testing/android/native_test.gyp:native_test_native_code', |
| 284 ], | 284 ], |
| 285 'sources+': [ |
| 286 'ipc/client/gpu_memory_buffer_impl_surface_texture_unittest.cc', |
| 287 ], |
| 285 }], | 288 }], |
| 286 ['OS == "mac"', { | 289 ['OS == "mac"', { |
| 287 'sources+': [ | 290 'sources+': [ |
| 288 'ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc', | 291 'ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc', |
| 289 ] | 292 ] |
| 290 }], | 293 }], |
| 291 ['use_ozone == 1', { | 294 ['use_ozone == 1', { |
| 292 'dependencies': [ | 295 'dependencies': [ |
| 293 '../ui/ozone/ozone.gyp:ozone', | 296 '../ui/ozone/ozone.gyp:ozone', |
| 294 ], | 297 ], |
| 295 'sources+': [ | 298 'sources+': [ |
| 296 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc', | 299 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc', |
| 297 ] | 300 ] |
| 298 }], | 301 }], |
| 299 ], | 302 ], |
| 300 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 303 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 301 'msvs_disabled_warnings': [ 4267, ], | 304 'msvs_disabled_warnings': [ 4267, ], |
| 302 }, | 305 }, |
| 303 { | 306 { |
| 304 # GN version: //gpu/ipc/service:gpu_ipc_service_unittests | 307 # GN version: //gpu/ipc/service:gpu_ipc_service_unittests |
| 305 'target_name': 'gpu_ipc_service_unittests', | 308 'target_name': 'gpu_ipc_service_unittests', |
| 306 'type': '<(gtest_target_type)', | 309 'type': '<(gtest_target_type)', |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 ], | 1154 ], |
| 1152 'sources': [ | 1155 'sources': [ |
| 1153 'gpu_unittests_apk.isolate', | 1156 'gpu_unittests_apk.isolate', |
| 1154 ], | 1157 ], |
| 1155 }, | 1158 }, |
| 1156 ], | 1159 ], |
| 1157 }, | 1160 }, |
| 1158 ], | 1161 ], |
| 1159 ], | 1162 ], |
| 1160 } | 1163 } |
| OLD | NEW |