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

Unified Diff: gpu/gpu.gyp

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: gpu/gpu.gyp
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
index 65f22a07f81b9b6aabef9942f6c2347a2a715fe5..9652d80f3b1be34843f6ebeed00d38764811507f 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -298,6 +298,62 @@
'msvs_disabled_warnings': [ 4267, ],
},
{
+ # GN version: //gpu/ipc/service:gpu_ipc_service_unittests
+ 'target_name': 'gpu_ipc_service_unittests',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:run_all_unittests',
+ '../base/base.gyp:test_support_base',
+ '../ipc/ipc.gyp:test_support_ipc',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ '../third_party/mesa/mesa.gyp:mesa_headers',
+ '../ui/gfx/gfx.gyp:gfx_test_support',
+ '../url/url.gyp:url_lib',
+ 'command_buffer_common',
+ 'command_buffer_service',
+ 'gpu_config',
+ 'gpu_ipc_common',
+ 'gpu_ipc_service',
+ 'gpu_ipc_service_test_support',
+ ],
+ 'sources': [
+ 'ipc/service/gpu_channel_manager_unittest.cc',
+ 'ipc/service/gpu_channel_test_common.cc',
+ 'ipc/service/gpu_channel_test_common.h',
+ 'ipc/service/gpu_channel_unittest.cc',
+ ],
+ 'include_dirs': [
+ '../third_party/mesa/src/include',
+ ],
+ 'conditions': [
+ ['OS == "android"', {
+ 'sources': [
+ 'ipc/service/gpu_memory_buffer_factory_surface_texture_unittest.cc',
+ ],
+ }],
+ ['OS == "mac"', {
+ 'sources': [
+ 'ipc/service/ca_layer_tree_unittest_mac.mm',
+ 'ipc/service/gpu_memory_buffer_factory_io_surface_unittest.cc',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/CoreMedia.framework',
+ '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework',
+ '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
+ ],
+ },
+ }],
+ ['use_ozone == 1', {
+ 'sources': [
+ 'ipc/service/gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc',
+ ],
+ }],
+ ],
+ },
+ {
# GN version: //gpu/gpu_perftests
'target_name': 'gpu_perftests',
'type': '<(gtest_target_type)',
@@ -434,6 +490,19 @@
],
},
{
+ # GN version: //gpu/ipc/service:test_support
+ 'target_name': 'gpu_ipc_service_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'gpu/ipc/service/gpu_memory_buffer_factory_test_template.h',
+ ],
+ },
+ {
# GN version: //gpu:command_buffer_gles2
'target_name': 'command_buffer_gles2',
'type': 'shared_library',
@@ -459,17 +528,17 @@
'gles2_conform_support/egl/test_support.cc',
'gles2_conform_support/egl/test_support.h',
],
- 'defines': [
+ 'defines': [
'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
'EGLAPIENTRY=',
- ],
+ ],
'conditions': [
['OS=="win"', {
'defines': [
'EGLAPI=__declspec(dllexport)',
],
}, { # OS!="win"
- 'defines': [
+ 'defines': [
'EGLAPI=__attribute__((visibility(\"default\")))'
],
}],
@@ -492,7 +561,7 @@
'command_buffer/tests/command_buffer_gles2_tests_main.cc',
'command_buffer/tests/egl_test.cc',
],
- 'defines': [
+ 'defines': [
'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
'EGLAPIENTRY=',
],
@@ -502,10 +571,10 @@
'EGLAPI=__declspec(dllimport)',
],
}, { # OS!="win"
- 'defines': [
+ 'defines': [
'EGLAPI=',
],
- }],
+ }],
['OS == "android"', {
'dependencies': [
'../testing/android/native_test.gyp:native_test_native_code',
@@ -540,6 +609,7 @@
'gpu_config',
'gpu_ipc_client',
'gpu_ipc_common',
+ 'gpu_ipc_service',
],
'sources': [
'gpu_export.h',
@@ -639,6 +709,17 @@
],
},
{
+ # GN version: //gpu/ipc/service
+ 'target_name': 'gpu_ipc_service',
+ 'type': 'static_library',
+ 'includes': [
+ 'gpu_ipc_service.gypi',
+ ],
+ 'dependencies': [
+ 'command_buffer_traits',
+ ],
+ },
+ {
'target_name': 'gpu_config',
'type': 'static_library',
'includes': [
@@ -673,6 +754,7 @@
'gpu_config.gypi',
'gpu_ipc_client.gypi',
'gpu_ipc_common.gypi',
+ 'gpu_ipc_service.gypi',
'../build/android/increase_size_for_speed.gypi',
],
'defines': [
@@ -748,6 +830,21 @@
'gpu',
],
},
+ {
+ # GN version: //gpu/ipc/service
+ 'target_name': 'gpu_ipc_service',
+ 'type': 'none',
+ 'dependencies': [
+ 'gpu',
+ ],
+ },
+ {
+ 'target_name': 'gpu_config',
+ 'type': 'none',
+ 'dependencies': [
+ 'gpu',
+ ],
+ },
],
}],
['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {

Powered by Google App Engine
This is Rietveld 408576698