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

Side by Side Diff: media/media.gyp

Issue 1912923002: Add media_features deps in media.gyp and media/base/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « media/base/BUILD.gn ('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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 }], 1095 }],
1096 ], # target_conditions 1096 ], # target_conditions
1097 }, 1097 },
1098 { 1098 {
1099 # GN version: //media:media_unittests 1099 # GN version: //media:media_unittests
1100 'target_name': 'media_unittests', 1100 'target_name': 'media_unittests',
1101 'type': '<(gtest_target_type)', 1101 'type': '<(gtest_target_type)',
1102 'dependencies': [ 1102 'dependencies': [
1103 'audio_test_config', 1103 'audio_test_config',
1104 'media', 1104 'media',
1105 'media_features',
wolenetz 2016/04/21 23:29:15 Is this explicitly necessary, since media_test_sup
servolk 2016/04/22 18:46:24 I assumed that it wasn't necessary, since I though
1105 'media_test_support', 1106 'media_test_support',
1106 'shared_memory_support', 1107 'shared_memory_support',
1107 '../base/base.gyp:base', 1108 '../base/base.gyp:base',
1108 '../base/base.gyp:base_i18n', 1109 '../base/base.gyp:base_i18n',
1109 '../base/base.gyp:test_support_base', 1110 '../base/base.gyp:test_support_base',
1110 '../gpu/gpu.gyp:command_buffer_common', 1111 '../gpu/gpu.gyp:command_buffer_common',
1111 '../gpu/gpu.gyp:gpu_unittest_utils', 1112 '../gpu/gpu.gyp:gpu_unittest_utils',
1112 '../skia/skia.gyp:skia', 1113 '../skia/skia.gyp:skia',
1113 '../testing/gmock.gyp:gmock', 1114 '../testing/gmock.gyp:gmock',
1114 '../testing/gtest.gyp:gtest', 1115 '../testing/gtest.gyp:gtest',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 'dependencies': [ 1372 'dependencies': [
1372 '../base/base.gyp:test_support_base', 1373 '../base/base.gyp:test_support_base',
1373 '../testing/gmock.gyp:gmock', 1374 '../testing/gmock.gyp:gmock',
1374 '../testing/gtest.gyp:gtest', 1375 '../testing/gtest.gyp:gtest',
1375 '../testing/perf/perf_test.gyp:perf_test', 1376 '../testing/perf/perf_test.gyp:perf_test',
1376 '../third_party/libyuv/libyuv.gyp:libyuv', 1377 '../third_party/libyuv/libyuv.gyp:libyuv',
1377 '../ui/gfx/gfx.gyp:gfx', 1378 '../ui/gfx/gfx.gyp:gfx',
1378 '../ui/gfx/gfx.gyp:gfx_geometry', 1379 '../ui/gfx/gfx.gyp:gfx_geometry',
1379 '../ui/gfx/gfx.gyp:gfx_test_support', 1380 '../ui/gfx/gfx.gyp:gfx_test_support',
1380 'media', 1381 'media',
1382 'media_features',
wolenetz 2016/04/21 23:29:15 ditto
servolk 2016/04/22 18:46:24 Acknowledged.
1381 'media_test_support', 1383 'media_test_support',
1382 'shared_memory_support', 1384 'shared_memory_support',
1383 ], 1385 ],
1384 'sources': [ 1386 'sources': [
1385 'base/audio_bus_perftest.cc', 1387 'base/audio_bus_perftest.cc',
1386 'base/audio_converter_perftest.cc', 1388 'base/audio_converter_perftest.cc',
1387 'base/demuxer_perftest.cc', 1389 'base/demuxer_perftest.cc',
1388 'base/run_all_perftests.cc', 1390 'base/run_all_perftests.cc',
1389 'base/sinc_resampler_perftest.cc', 1391 'base/sinc_resampler_perftest.cc',
1390 'base/vector_math_perftest.cc', 1392 'base/vector_math_perftest.cc',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1524 'base/run_all_unittests.cc', 1526 'base/run_all_unittests.cc',
1525 ], 1527 ],
1526 }, 1528 },
1527 { 1529 {
1528 # GN versions (it is split apart): //media:test_support, 1530 # GN versions (it is split apart): //media:test_support,
1529 # //media/base:test_support, and //media/audio:test_support 1531 # //media/base:test_support, and //media/audio:test_support
1530 'target_name': 'media_test_support', 1532 'target_name': 'media_test_support',
1531 'type': 'static_library', 1533 'type': 'static_library',
1532 'dependencies': [ 1534 'dependencies': [
1533 'media', 1535 'media',
1536 'media_features',
1534 'shared_memory_support', 1537 'shared_memory_support',
1535 '../base/base.gyp:base', 1538 '../base/base.gyp:base',
1536 '../skia/skia.gyp:skia', 1539 '../skia/skia.gyp:skia',
1537 '../testing/gmock.gyp:gmock', 1540 '../testing/gmock.gyp:gmock',
1538 '../testing/gtest.gyp:gtest', 1541 '../testing/gtest.gyp:gtest',
1539 ], 1542 ],
1540 'sources': [ 1543 'sources': [
1541 'audio/audio_unittest_util.cc', 1544 'audio/audio_unittest_util.cc',
1542 'audio/audio_unittest_util.h', 1545 'audio/audio_unittest_util.h',
1543 'audio/mock_audio_manager.cc', 1546 'audio/mock_audio_manager.cc',
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
2072 'dependencies': [ 2075 'dependencies': [
2073 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2076 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2074 ], 2077 ],
2075 }], 2078 }],
2076 ], 2079 ],
2077 }, 2080 },
2078 ], 2081 ],
2079 }], 2082 }],
2080 ], 2083 ],
2081 } 2084 }
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698