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

Side by Side Diff: media/media.gyp

Issue 438963005: Purge net/ and ui/base from media_unittest DEPS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove gl from perftests. Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/base/test_data_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 'media_test_support', 1007 'media_test_support',
1008 'shared_memory_support', 1008 'shared_memory_support',
1009 '../base/base.gyp:base', 1009 '../base/base.gyp:base',
1010 '../base/base.gyp:base_i18n', 1010 '../base/base.gyp:base_i18n',
1011 '../base/base.gyp:test_support_base', 1011 '../base/base.gyp:test_support_base',
1012 '../gpu/gpu.gyp:command_buffer_common', 1012 '../gpu/gpu.gyp:command_buffer_common',
1013 '../skia/skia.gyp:skia', 1013 '../skia/skia.gyp:skia',
1014 '../testing/gmock.gyp:gmock', 1014 '../testing/gmock.gyp:gmock',
1015 '../testing/gtest.gyp:gtest', 1015 '../testing/gtest.gyp:gtest',
1016 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 1016 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
1017 '../ui/base/ui_base.gyp:ui_base',
1018 '../ui/gfx/gfx.gyp:gfx', 1017 '../ui/gfx/gfx.gyp:gfx',
1019 '../ui/gfx/gfx.gyp:gfx_geometry', 1018 '../ui/gfx/gfx.gyp:gfx_geometry',
1020 '../ui/gfx/gfx.gyp:gfx_test_support', 1019 '../ui/gfx/gfx.gyp:gfx_test_support',
1021 '../url/url.gyp:url_lib', 1020 '../url/url.gyp:url_lib',
1022 ], 1021 ],
1023 'sources': [ 1022 'sources': [
1024 'audio/android/audio_android_unittest.cc', 1023 'audio/android/audio_android_unittest.cc',
1025 'audio/alsa/alsa_output_unittest.cc', 1024 'audio/alsa/alsa_output_unittest.cc',
1026 'audio/audio_input_controller_unittest.cc', 1025 'audio/audio_input_controller_unittest.cc',
1027 'audio/audio_input_unittest.cc', 1026 'audio/audio_input_unittest.cc',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 ], 1284 ],
1286 }, 1285 },
1287 { 1286 {
1288 'target_name': 'media_perftests', 1287 'target_name': 'media_perftests',
1289 'type': '<(gtest_target_type)', 1288 'type': '<(gtest_target_type)',
1290 'dependencies': [ 1289 'dependencies': [
1291 '../base/base.gyp:test_support_base', 1290 '../base/base.gyp:test_support_base',
1292 '../testing/gmock.gyp:gmock', 1291 '../testing/gmock.gyp:gmock',
1293 '../testing/gtest.gyp:gtest', 1292 '../testing/gtest.gyp:gtest',
1294 '../testing/perf/perf_test.gyp:perf_test', 1293 '../testing/perf/perf_test.gyp:perf_test',
1295 '../ui/base/ui_base.gyp:ui_base',
1296 '../ui/gfx/gfx.gyp:gfx', 1294 '../ui/gfx/gfx.gyp:gfx',
1297 '../ui/gfx/gfx.gyp:gfx_test_support', 1295 '../ui/gfx/gfx.gyp:gfx_test_support',
1298 '../ui/gfx/gfx.gyp:gfx_geometry', 1296 '../ui/gfx/gfx.gyp:gfx_geometry',
1299 '../ui/gl/gl.gyp:gl',
1300 'media', 1297 'media',
1301 'media_test_support', 1298 'media_test_support',
1302 'shared_memory_support', 1299 'shared_memory_support',
1303 ], 1300 ],
1304 'sources': [ 1301 'sources': [
1305 'base/audio_bus_perftest.cc', 1302 'base/audio_bus_perftest.cc',
1306 'base/audio_converter_perftest.cc', 1303 'base/audio_converter_perftest.cc',
1307 'base/demuxer_perftest.cc', 1304 'base/demuxer_perftest.cc',
1308 'base/run_all_perftests.cc', 1305 'base/run_all_perftests.cc',
1309 'base/sinc_resampler_perftest.cc', 1306 'base/sinc_resampler_perftest.cc',
1310 'base/vector_math_perftest.cc', 1307 'base/vector_math_perftest.cc',
1311 'base/yuv_convert_perftest.cc', 1308 'base/yuv_convert_perftest.cc',
1312 'filters/pipeline_integration_perftest.cc', 1309 'filters/pipeline_integration_perftest.cc',
1313 'filters/pipeline_integration_test_base.cc', 1310 'filters/pipeline_integration_test_base.cc',
1314 ], 1311 ],
1315 'conditions': [ 1312 'conditions': [
1316 ['arm_neon==1', { 1313 ['arm_neon==1', {
1317 'defines': [ 1314 'defines': [
1318 'USE_NEON' 1315 'USE_NEON'
1319 ], 1316 ],
1320 }], 1317 }],
1321 ['OS=="android"', { 1318 ['OS=="android"', {
1322 'dependencies': [ 1319 'dependencies': [
1323 '../testing/android/native_test.gyp:native_test_native_code', 1320 '../testing/android/native_test.gyp:native_test_native_code',
1324 ], 1321 '../ui/gl/gl.gyp:gl',
1322 ],
1325 }], 1323 }],
1326 ['media_use_ffmpeg==1', { 1324 ['media_use_ffmpeg==1', {
1327 'dependencies': [ 1325 'dependencies': [
1328 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 1326 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
1329 ], 1327 ],
1330 }, { # media_use_ffmpeg==0 1328 }, { # media_use_ffmpeg==0
1331 'sources!': [ 1329 'sources!': [
1332 'base/demuxer_perftest.cc', 1330 'base/demuxer_perftest.cc',
1333 'filters/pipeline_integration_perftest.cc', 1331 'filters/pipeline_integration_perftest.cc',
1334 'filters/pipeline_integration_test_base.cc', 1332 'filters/pipeline_integration_test_base.cc',
1335 ], 1333 ],
1336 }], 1334 }],
1337 ], 1335 ],
1338 }, 1336 },
1339 { 1337 {
1340 'target_name': 'media_test_support', 1338 'target_name': 'media_test_support',
1341 'type': 'static_library', 1339 'type': 'static_library',
1342 'dependencies': [ 1340 'dependencies': [
1343 'media', 1341 'media',
1344 'shared_memory_support', 1342 'shared_memory_support',
1345 '../base/base.gyp:base', 1343 '../base/base.gyp:base',
1346 '../net/net.gyp:net_test_support',
1347 '../skia/skia.gyp:skia', 1344 '../skia/skia.gyp:skia',
1348 '../testing/gmock.gyp:gmock', 1345 '../testing/gmock.gyp:gmock',
1349 '../testing/gtest.gyp:gtest', 1346 '../testing/gtest.gyp:gtest',
1350 ], 1347 ],
1351 'sources': [ 1348 'sources': [
1352 'audio/mock_audio_manager.cc', 1349 'audio/mock_audio_manager.cc',
1353 'audio/mock_audio_manager.h', 1350 'audio/mock_audio_manager.h',
1354 'audio/mock_audio_source_callback.cc', 1351 'audio/mock_audio_source_callback.cc',
1355 'audio/mock_audio_source_callback.h', 1352 'audio/mock_audio_source_callback.h',
1356 'audio/test_audio_input_controller_factory.cc', 1353 'audio/test_audio_input_controller_factory.cc',
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
1750 ], 1747 ],
1751 }], 1748 }],
1752 ], 1749 ],
1753 }], 1750 }],
1754 ], 1751 ],
1755 }, 1752 },
1756 ], 1753 ],
1757 }], 1754 }],
1758 ], 1755 ],
1759 } 1756 }
OLDNEW
« no previous file with comments | « media/base/test_data_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698