| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 'config/gpu_test_expectations_parser_unittest.cc', | 273 'config/gpu_test_expectations_parser_unittest.cc', |
| 274 'config/gpu_util_unittest.cc', | 274 'config/gpu_util_unittest.cc', |
| 275 'ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc', | 275 'ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc', |
| 276 'ipc/client/gpu_memory_buffer_impl_test_template.h', | 276 'ipc/client/gpu_memory_buffer_impl_test_template.h', |
| 277 ], | 277 ], |
| 278 'conditions': [ | 278 'conditions': [ |
| 279 ['OS == "android"', { | 279 ['OS == "android"', { |
| 280 'dependencies': [ | 280 'dependencies': [ |
| 281 '../testing/android/native_test.gyp:native_test_native_code', | 281 '../testing/android/native_test.gyp:native_test_native_code', |
| 282 ], | 282 ], |
| 283 'sources+': [ |
| 284 'ipc/client/gpu_memory_buffer_impl_surface_texture_unittest.cc', |
| 285 ], |
| 283 }], | 286 }], |
| 284 ['OS == "mac"', { | 287 ['OS == "mac"', { |
| 285 'sources+': [ | 288 'sources+': [ |
| 286 'ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc', | 289 'ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc', |
| 287 ] | 290 ] |
| 288 }], | 291 }], |
| 289 ['use_ozone == 1', { | 292 ['use_ozone == 1', { |
| 290 'dependencies': [ | 293 'dependencies': [ |
| 291 '../ui/ozone/ozone.gyp:ozone', | 294 '../ui/ozone/ozone.gyp:ozone', |
| 292 ], | 295 ], |
| 293 'sources+': [ | 296 'sources+': [ |
| 294 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc', | 297 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc', |
| 295 ] | 298 ] |
| 296 }], | 299 }], |
| 297 ], | 300 ], |
| 298 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 301 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 299 'msvs_disabled_warnings': [ 4267, ], | 302 'msvs_disabled_warnings': [ 4267, ], |
| 300 }, | 303 }, |
| 301 { | 304 { |
| 302 # GN version: //gpu/ipc/service:gpu_ipc_service_unittests | 305 # GN version: //gpu/ipc/service:gpu_ipc_service_unittests |
| 303 'target_name': 'gpu_ipc_service_unittests', | 306 'target_name': 'gpu_ipc_service_unittests', |
| 304 'type': '<(gtest_target_type)', | 307 'type': '<(gtest_target_type)', |
| (...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 ], | 1148 ], |
| 1146 'sources': [ | 1149 'sources': [ |
| 1147 'gpu_unittests_apk.isolate', | 1150 'gpu_unittests_apk.isolate', |
| 1148 ], | 1151 ], |
| 1149 }, | 1152 }, |
| 1150 ], | 1153 ], |
| 1151 }, | 1154 }, |
| 1152 ], | 1155 ], |
| 1153 ], | 1156 ], |
| 1154 } | 1157 } |
| OLD | NEW |