Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: gpu/gpu.gyp

Issue 1640243002: command_buffer_gles2: Add test command_buffer_gles2_test for command_buffer_gles2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 'EGLAPI=__declspec(dllexport)', 446 'EGLAPI=__declspec(dllexport)',
447 ], 447 ],
448 }, { # OS!="win" 448 }, { # OS!="win"
449 'defines': [ 449 'defines': [
450 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', 450 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
451 'EGLAPIENTRY=', 451 'EGLAPIENTRY=',
452 'EGLAPI=__attribute__((visibility(\"default\")))' 452 'EGLAPI=__attribute__((visibility(\"default\")))'
453 ], 453 ],
454 }, ], 454 }, ],
455 ], 455 ],
456 } 456 },
457 {
458 # GN version: //gpu:command_buffer_gles2_tests
459 'target_name': 'command_buffer_gles2_tests',
460 'type': '<(gtest_target_type)',
461 'dependencies': [
462 '../base/base.gyp:base',
463 '../base/base.gyp:test_support_base',
464 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
465 '../testing/gmock.gyp:gmock',
466 '../testing/gtest.gyp:gtest',
467 'command_buffer_gles2',
468 ],
469 'sources': [
470 # Note: sources list duplicated in GN build.
471 'command_buffer/tests/command_buffer_gles2_tests_main.cc',
472 'command_buffer/tests/egl_test.cc',
473 ],
474 'conditions': [
475 ['OS == "android"', {
476 'dependencies': [
477 '../testing/android/native_test.gyp:native_test_native_code',
478 ],
479 }],
480 ],
481 },
457 ], 482 ],
458 'conditions': [ 483 'conditions': [
459 ['component=="static_library"', { 484 ['component=="static_library"', {
460 'targets': [ 485 'targets': [
461 { 486 {
462 # GN version: //gpu/command_buffer/service:disk_cache_proto 487 # GN version: //gpu/command_buffer/service:disk_cache_proto
463 'target_name': 'disk_cache_proto', 488 'target_name': 'disk_cache_proto',
464 'type': 'static_library', 489 'type': 'static_library',
465 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ], 490 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
466 'variables': { 491 'variables': {
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 ], 928 ],
904 'sources': [ 929 'sources': [
905 'gpu_unittests_apk.isolate', 930 'gpu_unittests_apk.isolate',
906 ], 931 ],
907 }, 932 },
908 ], 933 ],
909 }, 934 },
910 ], 935 ],
911 ], 936 ],
912 } 937 }
OLDNEW
« gpu/gles2_conform_support/egl/test_support.h ('K') | « gpu/gles2_conform_support/egl/test_support.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698