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

Unified Diff: media/gpu/ipc/media_ipc.gyp

Issue 2279593004: Delete gyp files from media/ (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « media/ffmpeg/ffmpeg_common.h ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/ipc/media_ipc.gyp
diff --git a/media/gpu/ipc/media_ipc.gyp b/media/gpu/ipc/media_ipc.gyp
deleted file mode 100644
index 3ebf1ff8d661aadd06ad23f71a0f8f0d6676112e..0000000000000000000000000000000000000000
--- a/media/gpu/ipc/media_ipc.gyp
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'targets': [
- {
- # GN version: //media/gpu/ipc/common
- 'target_name': 'media_gpu_ipc_common',
- 'type': 'static_library',
- 'dependencies': [
- '../../media.gyp:media',
- '../../media.gyp:media_features',
- '../../../base/base.gyp:base',
- '../../../gpu/gpu.gyp:gpu_ipc_common',
- '../../../ipc/ipc.gyp:ipc',
- '../../../ui/gfx/gfx.gyp:gfx',
- '../../../ui/gfx/gfx.gyp:gfx_geometry',
- '../../../ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry',
- '../../../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
- ],
- # This sources list is duplicated in //media/gpu/ipc/common/BUILD.gn
- 'sources': [
- 'common/create_video_encoder_params.cc',
- 'common/create_video_encoder_params.h',
- 'common/media_message_generator.cc',
- 'common/media_message_generator.h',
- 'common/media_messages.h',
- 'common/media_param_traits.h',
- 'common/media_param_traits.cc',
- 'common/media_param_traits_macros.h',
- ],
- },
- {
- # GN version: //media/gpu/ipc/client
- 'target_name': 'media_gpu_ipc_client',
- 'type': 'static_library',
- 'dependencies': [
- '../../media.gyp:media',
- '../../media.gyp:media_features',
- '../../media.gyp:media_gpu',
- '../../../base/base.gyp:base',
- '../../../gpu/gpu.gyp:gpu_ipc_common',
- '../../../ipc/ipc.gyp:ipc',
- '../../../ui/gfx/gfx.gyp:gfx',
- '../../../ui/gfx/gfx.gyp:gfx_geometry',
- '../../../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
- ],
- # This sources list is duplicated in //media/gpu/ipc/client/BUILD.gn
- 'sources': [
- 'client/gpu_jpeg_decode_accelerator_host.cc',
- 'client/gpu_jpeg_decode_accelerator_host.h',
- 'client/gpu_video_decode_accelerator_host.cc',
- 'client/gpu_video_decode_accelerator_host.h',
- 'client/gpu_video_encode_accelerator_host.cc',
- 'client/gpu_video_encode_accelerator_host.h',
- ],
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267 ],
- },
- {
- # GN version: //media/gpu/ipc/service
- 'target_name': 'media_gpu_ipc_service',
- 'type': 'static_library',
- 'dependencies': [
- '../../../base/base.gyp:base',
- '../../../gpu/gpu.gyp:gpu_config',
- '../../../gpu/gpu.gyp:gpu_ipc_service',
- '../../../ipc/ipc.gyp:ipc',
- '../../../third_party/mesa/mesa.gyp:mesa_headers',
- '../../media.gyp:media',
- '../../media.gyp:media_gpu',
- 'media_gpu_ipc_common',
- ],
- 'sources': [
- 'service/gpu_jpeg_decode_accelerator.cc',
- 'service/gpu_jpeg_decode_accelerator.h',
- 'service/gpu_video_decode_accelerator.cc',
- 'service/gpu_video_decode_accelerator.h',
- 'service/gpu_video_encode_accelerator.cc',
- 'service/gpu_video_encode_accelerator.h',
- 'service/media_channel.cc',
- 'service/media_channel.h',
- 'service/media_service.cc',
- 'service/media_service.h',
- ],
- 'include_dirs': [
- '<(DEPTH)/third_party/libva',
- '<(DEPTH)/third_party/mesa/src/include',
- ],
- 'conditions': [
- ['OS == "win" and target_arch == "x64"', {
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- '/wd4267', # Conversion from 'size_t' to 'type', possible loss of data
- ],
- },
- },
- }],
- ['OS=="mac"', {
- 'dependencies': [
- '../../../third_party/webrtc/common_video/common_video.gyp:common_video',
- ],
- }],
- ],
- }
- ]
-}
« no previous file with comments | « media/ffmpeg/ffmpeg_common.h ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698