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

Side by Side Diff: media/media.gyp

Issue 1989893004: media: Use platform specific folders for CDMs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 'cdm/aes_decryptor.cc', 480 'cdm/aes_decryptor.cc',
481 'cdm/aes_decryptor.h', 481 'cdm/aes_decryptor.h',
482 'cdm/cdm_adapter.cc', 482 'cdm/cdm_adapter.cc',
483 'cdm/cdm_adapter.h', 483 'cdm/cdm_adapter.h',
484 'cdm/cdm_allocator.cc', 484 'cdm/cdm_allocator.cc',
485 'cdm/cdm_allocator.h', 485 'cdm/cdm_allocator.h',
486 'cdm/cdm_file_io.h', 486 'cdm/cdm_file_io.h',
487 'cdm/cdm_file_io.h', 487 'cdm/cdm_file_io.h',
488 'cdm/cdm_helpers.cc', 488 'cdm/cdm_helpers.cc',
489 'cdm/cdm_helpers.h', 489 'cdm/cdm_helpers.h',
490 'cdm/cdm_paths.cc',
491 'cdm/cdm_paths.h',
490 'cdm/default_cdm_factory.cc', 492 'cdm/default_cdm_factory.cc',
491 'cdm/default_cdm_factory.h', 493 'cdm/default_cdm_factory.h',
492 'cdm/json_web_key.cc', 494 'cdm/json_web_key.cc',
493 'cdm/json_web_key.h', 495 'cdm/json_web_key.h',
494 'cdm/player_tracker_impl.cc', 496 'cdm/player_tracker_impl.cc',
495 'cdm/player_tracker_impl.h', 497 'cdm/player_tracker_impl.h',
496 'cdm/supported_cdm_versions.cc', 498 'cdm/supported_cdm_versions.cc',
497 'cdm/supported_cdm_versions.h', 499 'cdm/supported_cdm_versions.h',
498 'ffmpeg/ffmpeg_common.cc', 500 'ffmpeg/ffmpeg_common.cc',
499 'ffmpeg/ffmpeg_common.h', 501 'ffmpeg/ffmpeg_common.h',
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 ], 1322 ],
1321 }], 1323 }],
1322 # If ExternalClearKey is built, we can test CdmAdapter. 1324 # If ExternalClearKey is built, we can test CdmAdapter.
1323 ['enable_pepper_cdms == 1', { 1325 ['enable_pepper_cdms == 1', {
1324 'dependencies': [ 1326 'dependencies': [
1325 'clearkeycdm', 1327 'clearkeycdm',
1326 ], 1328 ],
1327 'sources': [ 1329 'sources': [
1328 'cdm/cdm_adapter_unittest.cc', 1330 'cdm/cdm_adapter_unittest.cc',
1329 ], 1331 ],
1332 'conditions': [
1333 ['OS == "mac"', {
1334 'xcode_settings': {
1335 'LD_RUNPATH_SEARCH_PATHS' : [ '@executable_path/<(clearkey_cdm_p ath)' ],
1336 },
1337 }]
1338 ],
1330 }], 1339 }],
1331 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 1340 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', {
1332 'sources': [ 1341 'sources': [
1333 'filters/h264_bitstream_buffer_unittest.cc', 1342 'filters/h264_bitstream_buffer_unittest.cc',
1334 ], 1343 ],
1335 }], 1344 }],
1336 ['target_arch=="ia32" or target_arch=="x64"', { 1345 ['target_arch=="ia32" or target_arch=="x64"', {
1337 'sources': [ 1346 'sources': [
1338 'base/simd/convert_rgb_to_yuv_unittest.cc', 1347 'base/simd/convert_rgb_to_yuv_unittest.cc',
1339 ], 1348 ],
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
2290 'dependencies': [ 2299 'dependencies': [
2291 '../build/linux/system.gyp:libdrm', 2300 '../build/linux/system.gyp:libdrm',
2292 ] 2301 ]
2293 }], 2302 }],
2294 ], 2303 ],
2295 } 2304 }
2296 ] 2305 ]
2297 }], 2306 }],
2298 ], 2307 ],
2299 } 2308 }
OLDNEW
« media/cdm/ppapi/cdm_paths.gni ('K') | « media/cdm_paths.gypi ('k') | media/media_cdm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698