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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # Override to dynamically link the cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
9 'use_cras%': 0, | 9 'use_cras%': 0, |
10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 }, { | 46 }, { |
47 'use_low_memory_buffer%': 0, | 47 'use_low_memory_buffer%': 0, |
48 }], | 48 }], |
49 ], | 49 ], |
50 }, | 50 }, |
51 'includes': [ | 51 'includes': [ |
52 'media_cdm.gypi', | 52 'media_cdm.gypi', |
53 ], | 53 ], |
54 'targets': [ | 54 'targets': [ |
55 { | 55 { |
| 56 # GN version: //media_mime_util |
| 57 'target_name': 'media_mime_util', |
| 58 'type': 'static_library', |
| 59 'dependencies': [ |
| 60 '<(DEPTH)/base/base.gyp:base', |
| 61 ], |
| 62 'sources': [ |
| 63 'base/mime_util.cc', |
| 64 'base/mime_util.h', |
| 65 ], |
| 66 }, |
| 67 { |
56 # GN version: //media | 68 # GN version: //media |
57 'target_name': 'media', | 69 'target_name': 'media', |
58 'type': '<(component)', | 70 'type': '<(component)', |
59 'dependencies': [ | 71 'dependencies': [ |
60 '../base/base.gyp:base', | 72 '../base/base.gyp:base', |
61 '../base/base.gyp:base_i18n', | 73 '../base/base.gyp:base_i18n', |
62 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 74 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
63 '../crypto/crypto.gyp:crypto', | 75 '../crypto/crypto.gyp:crypto', |
64 '../gpu/gpu.gyp:command_buffer_common', | 76 '../gpu/gpu.gyp:command_buffer_common', |
65 '../skia/skia.gyp:skia', | 77 '../skia/skia.gyp:skia', |
66 '../third_party/libyuv/libyuv.gyp:libyuv', | 78 '../third_party/libyuv/libyuv.gyp:libyuv', |
67 '../third_party/opus/opus.gyp:opus', | 79 '../third_party/opus/opus.gyp:opus', |
68 '../ui/events/events.gyp:events_base', | 80 '../ui/events/events.gyp:events_base', |
69 '../ui/gfx/gfx.gyp:gfx', | 81 '../ui/gfx/gfx.gyp:gfx', |
70 '../ui/gfx/gfx.gyp:gfx_geometry', | 82 '../ui/gfx/gfx.gyp:gfx_geometry', |
71 '../url/url.gyp:url_lib', | 83 '../url/url.gyp:url_lib', |
| 84 'media_mime_util', |
72 'shared_memory_support', | 85 'shared_memory_support', |
73 ], | 86 ], |
74 'defines': [ | 87 'defines': [ |
75 'MEDIA_IMPLEMENTATION', | 88 'MEDIA_IMPLEMENTATION', |
76 ], | 89 ], |
77 'include_dirs': [ | 90 'include_dirs': [ |
78 '..', | 91 '..', |
79 ], | 92 ], |
80 'sources': [ | 93 'sources': [ |
81 'audio/agc_audio_stream.h', | 94 'audio/agc_audio_stream.h', |
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 }], | 1092 }], |
1080 ], # target_conditions | 1093 ], # target_conditions |
1081 }, | 1094 }, |
1082 { | 1095 { |
1083 # GN version: //media:media_unittests | 1096 # GN version: //media:media_unittests |
1084 'target_name': 'media_unittests', | 1097 'target_name': 'media_unittests', |
1085 'type': '<(gtest_target_type)', | 1098 'type': '<(gtest_target_type)', |
1086 'dependencies': [ | 1099 'dependencies': [ |
1087 'audio_test_config', | 1100 'audio_test_config', |
1088 'media', | 1101 'media', |
| 1102 'media_mime_util', |
1089 'media_test_support', | 1103 'media_test_support', |
1090 'shared_memory_support', | 1104 'shared_memory_support', |
1091 '../base/base.gyp:base', | 1105 '../base/base.gyp:base', |
1092 '../base/base.gyp:base_i18n', | 1106 '../base/base.gyp:base_i18n', |
1093 '../base/base.gyp:test_support_base', | 1107 '../base/base.gyp:test_support_base', |
1094 '../gpu/gpu.gyp:command_buffer_common', | 1108 '../gpu/gpu.gyp:command_buffer_common', |
1095 '../skia/skia.gyp:skia', | 1109 '../skia/skia.gyp:skia', |
1096 '../testing/gmock.gyp:gmock', | 1110 '../testing/gmock.gyp:gmock', |
1097 '../testing/gtest.gyp:gtest', | 1111 '../testing/gtest.gyp:gtest', |
1098 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 1112 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 'base/channel_mixing_matrix_unittest.cc', | 1144 'base/channel_mixing_matrix_unittest.cc', |
1131 'base/container_names_unittest.cc', | 1145 'base/container_names_unittest.cc', |
1132 'base/data_buffer_unittest.cc', | 1146 'base/data_buffer_unittest.cc', |
1133 'base/decoder_buffer_queue_unittest.cc', | 1147 'base/decoder_buffer_queue_unittest.cc', |
1134 'base/decoder_buffer_unittest.cc', | 1148 'base/decoder_buffer_unittest.cc', |
1135 'base/djb2_unittest.cc', | 1149 'base/djb2_unittest.cc', |
1136 'base/gmock_callback_support_unittest.cc', | 1150 'base/gmock_callback_support_unittest.cc', |
1137 'base/key_systems_unittest.cc', | 1151 'base/key_systems_unittest.cc', |
1138 'base/mac/video_frame_mac_unittests.cc', | 1152 'base/mac/video_frame_mac_unittests.cc', |
1139 'base/media_file_checker_unittest.cc', | 1153 'base/media_file_checker_unittest.cc', |
| 1154 'base/mime_util_unittest.cc', |
1140 'base/moving_average_unittest.cc', | 1155 'base/moving_average_unittest.cc', |
1141 'base/multi_channel_resampler_unittest.cc', | 1156 'base/multi_channel_resampler_unittest.cc', |
1142 'base/null_video_sink_unittest.cc', | 1157 'base/null_video_sink_unittest.cc', |
1143 'base/pipeline_unittest.cc', | 1158 'base/pipeline_unittest.cc', |
1144 'base/ranges_unittest.cc', | 1159 'base/ranges_unittest.cc', |
1145 'base/run_all_unittests.cc', | 1160 'base/run_all_unittests.cc', |
1146 'base/seekable_buffer_unittest.cc', | 1161 'base/seekable_buffer_unittest.cc', |
1147 'base/serial_runner_unittest.cc', | 1162 'base/serial_runner_unittest.cc', |
1148 'base/sinc_resampler_unittest.cc', | 1163 'base/sinc_resampler_unittest.cc', |
1149 'base/stream_parser_unittest.cc', | 1164 'base/stream_parser_unittest.cc', |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1939 '../build/isolate.gypi', | 1954 '../build/isolate.gypi', |
1940 ], | 1955 ], |
1941 'sources': [ | 1956 'sources': [ |
1942 'media_unittests.isolate', | 1957 'media_unittests.isolate', |
1943 ], | 1958 ], |
1944 }, | 1959 }, |
1945 ], | 1960 ], |
1946 }], | 1961 }], |
1947 ], | 1962 ], |
1948 } | 1963 } |
OLD | NEW |