| Index: content/content_tests.gypi
|
| diff --git a/content/content_tests.gypi b/content/content_tests.gypi
|
| index a892f4588534227d048becfeccaed8a624f14504..237192f0fb0c8aa1245a6db9f91252c2f752bfcd 100644
|
| --- a/content/content_tests.gypi
|
| +++ b/content/content_tests.gypi
|
| @@ -118,6 +118,7 @@
|
| 'test/fake_plugin_service.h',
|
| 'test/fake_renderer_scheduler.cc',
|
| 'test/fake_renderer_scheduler.h',
|
| + 'test/gpu_memory_buffer_factory_test_template.h',
|
| 'test/mock_google_streaming_server.cc',
|
| 'test/mock_google_streaming_server.h',
|
| 'test/mock_keyboard.cc',
|
| @@ -633,12 +634,11 @@
|
| 'common/dwrite_font_platform_win_unittest.cc',
|
| 'common/fileapi/file_system_util_unittest.cc',
|
| 'common/font_warmup_win_unittest.cc',
|
| - 'common/gpu/client/gpu_memory_buffer_impl_unittest.cc',
|
| + 'common/gpu/client/gpu_memory_buffer_impl_shared_memory_unittest.cc',
|
| 'common/gpu/gpu_channel_test_common.cc',
|
| 'common/gpu/gpu_channel_test_common.h',
|
| 'common/gpu/gpu_channel_unittest.cc',
|
| 'common/gpu/gpu_channel_manager_unittest.cc',
|
| - 'common/gpu/gpu_memory_buffer_factory_unittest.cc',
|
| 'common/gpu/gpu_memory_manager_unittest.cc',
|
| 'common/host_discardable_shared_memory_manager_unittest.cc',
|
| 'common/host_shared_bitmap_manager_unittest.cc',
|
| @@ -787,8 +787,18 @@
|
| 'browser/android/overscroll_refresh_unittest.cc',
|
| 'browser/android/url_request_content_job_unittest.cc',
|
| 'browser/renderer_host/input/motion_event_android_unittest.cc',
|
| + 'common/gpu/client/gpu_memory_buffer_impl_surface_texture_unittest.cc',
|
| + 'common/gpu/gpu_memory_buffer_factory_surface_texture_unittest.cc',
|
| 'renderer/java/gin_java_bridge_value_converter_unittest.cc',
|
| ],
|
| + 'content_unittests_mac_sources': [
|
| + 'common/gpu/client/gpu_memory_buffer_impl_io_surface_unittest.cc',
|
| + 'common/gpu/gpu_memory_buffer_factory_io_surface_unittest.cc',
|
| + ],
|
| + 'content_unittests_ozone_sources': [
|
| + 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc',
|
| + 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc',
|
| + ],
|
| },
|
| 'targets': [
|
| {
|
| @@ -1216,12 +1226,14 @@
|
| ],
|
| }],
|
| ['use_ozone==1', {
|
| + 'sources': [ '<@(content_unittests_ozone_sources)' ],
|
| 'dependencies': [
|
| '../ui/ozone/ozone.gyp:ozone',
|
| '../ui/ozone/ozone.gyp:ozone_base',
|
| ],
|
| }],
|
| ['OS == "mac"', {
|
| + 'sources': [ '<@(content_unittests_mac_sources)' ],
|
| 'dependencies': [
|
| '../third_party/boringssl/boringssl.gyp:boringssl',
|
| ],
|
|
|