| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 'webm/webm_stream_parser.h', | 320 'webm/webm_stream_parser.h', |
| 321 'webm/webm_tracks_parser.cc', | 321 'webm/webm_tracks_parser.cc', |
| 322 'webm/webm_tracks_parser.h', | 322 'webm/webm_tracks_parser.h', |
| 323 ], | 323 ], |
| 324 'direct_dependent_settings': { | 324 'direct_dependent_settings': { |
| 325 'include_dirs': [ | 325 'include_dirs': [ |
| 326 '..', | 326 '..', |
| 327 ], | 327 ], |
| 328 }, | 328 }, |
| 329 'conditions': [ | 329 'conditions': [ |
| 330 ['arm_neon == 1', { |
| 331 'defines': [ |
| 332 'USE_NEON' |
| 333 ], |
| 334 }], |
| 330 ['OS != "ios"', { | 335 ['OS != "ios"', { |
| 331 'dependencies': [ | 336 'dependencies': [ |
| 332 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 337 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 333 'shared_memory_support', | 338 'shared_memory_support', |
| 334 'yuv_convert', | 339 'yuv_convert', |
| 335 ], | 340 ], |
| 336 }], | 341 }], |
| 337 ['use_ffmpeg == 1', { | 342 ['use_ffmpeg == 1', { |
| 338 'dependencies': [ | 343 'dependencies': [ |
| 339 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 344 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 'filters/source_buffer_stream_unittest.cc', | 646 'filters/source_buffer_stream_unittest.cc', |
| 642 'filters/video_renderer_base_unittest.cc', | 647 'filters/video_renderer_base_unittest.cc', |
| 643 'video/capture/video_capture_device_unittest.cc', | 648 'video/capture/video_capture_device_unittest.cc', |
| 644 'webm/cluster_builder.cc', | 649 'webm/cluster_builder.cc', |
| 645 'webm/cluster_builder.h', | 650 'webm/cluster_builder.h', |
| 646 'webm/webm_cluster_parser_unittest.cc', | 651 'webm/webm_cluster_parser_unittest.cc', |
| 647 'webm/webm_content_encodings_client_unittest.cc', | 652 'webm/webm_content_encodings_client_unittest.cc', |
| 648 'webm/webm_parser_unittest.cc', | 653 'webm/webm_parser_unittest.cc', |
| 649 ], | 654 ], |
| 650 'conditions': [ | 655 'conditions': [ |
| 656 ['arm_neon == 1', { |
| 657 'defines': [ |
| 658 'USE_NEON' |
| 659 ], |
| 660 }], |
| 651 ['OS != "ios"', { | 661 ['OS != "ios"', { |
| 652 'dependencies': [ | 662 'dependencies': [ |
| 653 'shared_memory_support', | 663 'shared_memory_support', |
| 654 'yuv_convert', | 664 'yuv_convert', |
| 655 ], | 665 ], |
| 656 }], | 666 }], |
| 657 ['use_ffmpeg == 1', { | 667 ['use_ffmpeg == 1', { |
| 658 'dependencies': [ | 668 'dependencies': [ |
| 659 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 669 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 660 ], | 670 ], |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 'media', | 1298 'media', |
| 1289 ], | 1299 ], |
| 1290 'sources': [ | 1300 'sources': [ |
| 1291 'tools/media_bench/media_bench.cc', | 1301 'tools/media_bench/media_bench.cc', |
| 1292 ], | 1302 ], |
| 1293 }, | 1303 }, |
| 1294 ], | 1304 ], |
| 1295 }] | 1305 }] |
| 1296 ], | 1306 ], |
| 1297 } | 1307 } |
| OLD | NEW |