Chromium Code Reviews| 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 PulseAudio library. | 8 # Override to dynamically link the PulseAudio library. |
| 9 'use_pulseaudio%': 0, | 9 'use_pulseaudio%': 0, |
| 10 # Override to dynamically link the cras (ChromeOS audio) library. | 10 # Override to dynamically link the cras (ChromeOS audio) library. |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 462 'dependencies': [ | 462 'dependencies': [ |
| 463 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', | 463 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', |
| 464 ], | 464 ], |
| 465 }, { # use_libvpx == 0 | 465 }, { # use_libvpx == 0 |
| 466 # Exclude the sources that depend on libvpx. | 466 # Exclude the sources that depend on libvpx. |
| 467 'sources!': [ | 467 'sources!': [ |
| 468 'filters/vpx_video_decoder.cc', | 468 'filters/vpx_video_decoder.cc', |
| 469 'filters/vpx_video_decoder.h', | 469 'filters/vpx_video_decoder.h', |
| 470 ], | 470 ], |
| 471 }], | 471 }], |
| 472 ['use_system_ffmpeg == 1', { | |
| 473 'defines': [ | |
| 474 '<!(python <(DEPTH)/tools/compile_test/compile_test.py ' | |
|
Ami GONE FROM CHROMIUM
2013/02/19 18:41:29
Can you confirm this doesn't get executed when use
Paweł Hajdan Jr.
2013/02/20 10:55:39
Confirmed. I made compile_test.py raise an excepti
| |
| 475 '--code "#include <libavcodec/avcodec.h>\n' | |
| 476 'int test() { return CODEC_ID_OPUS; }" ' | |
| 477 '--on-failure CHROMIUM_OMIT_CODEC_ID_OPUS)', | |
| 478 '<!(python <(DEPTH)/tools/compile_test/compile_test.py ' | |
| 479 '--code "#include <libavcodec/avcodec.h>\n' | |
| 480 'int test() { return AV_CODEC_ID_VP9; }" ' | |
| 481 '--on-failure CHROMIUM_OMIT_AV_CODEC_ID_VP9)', | |
| 482 ], | |
| 483 }], | |
| 472 ['OS == "ios"', { | 484 ['OS == "ios"', { |
| 473 'includes': [ | 485 'includes': [ |
| 474 # For shared_memory_support_sources variable. | 486 # For shared_memory_support_sources variable. |
| 475 'shared_memory_support.gypi', | 487 'shared_memory_support.gypi', |
| 476 ], | 488 ], |
| 477 'sources': [ | 489 'sources': [ |
| 478 'base/media_stub.cc', | 490 'base/media_stub.cc', |
| 479 # These sources are normally built via a dependency on the | 491 # These sources are normally built via a dependency on the |
| 480 # shared_memory_support target, but that target is not built on iOS. | 492 # shared_memory_support target, but that target is not built on iOS. |
| 481 # Instead, directly build only the files that are needed for iOS. | 493 # Instead, directly build only the files that are needed for iOS. |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1474 ], | 1486 ], |
| 1475 'sources': [ | 1487 'sources': [ |
| 1476 'video/capture/screen/differ_block_sse2.cc', | 1488 'video/capture/screen/differ_block_sse2.cc', |
| 1477 'video/capture/screen/differ_block_sse2.h', | 1489 'video/capture/screen/differ_block_sse2.h', |
| 1478 ], | 1490 ], |
| 1479 }, # end of target differ_block_sse2 | 1491 }, # end of target differ_block_sse2 |
| 1480 ], | 1492 ], |
| 1481 }], | 1493 }], |
| 1482 ], | 1494 ], |
| 1483 } | 1495 } |
| OLD | NEW |