| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'video/capture/mac/video_capture_device_mac.mm', | 303 'video/capture/mac/video_capture_device_mac.mm', |
| 304 'video/capture/mac/video_capture_device_qtkit_mac.h', | 304 'video/capture/mac/video_capture_device_qtkit_mac.h', |
| 305 'video/capture/mac/video_capture_device_qtkit_mac.mm', | 305 'video/capture/mac/video_capture_device_qtkit_mac.mm', |
| 306 'video/capture/video_capture.h', | 306 'video/capture/video_capture.h', |
| 307 'video/capture/video_capture_device.h', | 307 'video/capture/video_capture_device.h', |
| 308 'video/capture/video_capture_device_dummy.cc', | 308 'video/capture/video_capture_device_dummy.cc', |
| 309 'video/capture/video_capture_device_dummy.h', | 309 'video/capture/video_capture_device_dummy.h', |
| 310 'video/capture/video_capture_proxy.cc', | 310 'video/capture/video_capture_proxy.cc', |
| 311 'video/capture/video_capture_proxy.h', | 311 'video/capture/video_capture_proxy.h', |
| 312 'video/capture/video_capture_types.h', | 312 'video/capture/video_capture_types.h', |
| 313 'video/capture/win/capability_list_win.cc', |
| 314 'video/capture/win/capability_list_win.h', |
| 313 'video/capture/win/filter_base_win.cc', | 315 'video/capture/win/filter_base_win.cc', |
| 314 'video/capture/win/filter_base_win.h', | 316 'video/capture/win/filter_base_win.h', |
| 315 'video/capture/win/pin_base_win.cc', | 317 'video/capture/win/pin_base_win.cc', |
| 316 'video/capture/win/pin_base_win.h', | 318 'video/capture/win/pin_base_win.h', |
| 317 'video/capture/win/sink_filter_observer_win.h', | 319 'video/capture/win/sink_filter_observer_win.h', |
| 318 'video/capture/win/sink_filter_win.cc', | 320 'video/capture/win/sink_filter_win.cc', |
| 319 'video/capture/win/sink_filter_win.h', | 321 'video/capture/win/sink_filter_win.h', |
| 320 'video/capture/win/sink_input_pin_win.cc', | 322 'video/capture/win/sink_input_pin_win.cc', |
| 321 'video/capture/win/sink_input_pin_win.h', | 323 'video/capture/win/sink_input_pin_win.h', |
| 324 'video/capture/win/video_capture_device_mf_win.cc', |
| 325 'video/capture/win/video_capture_device_mf_win.h', |
| 322 'video/capture/win/video_capture_device_win.cc', | 326 'video/capture/win/video_capture_device_win.cc', |
| 323 'video/capture/win/video_capture_device_win.h', | 327 'video/capture/win/video_capture_device_win.h', |
| 324 'video/picture.cc', | 328 'video/picture.cc', |
| 325 'video/picture.h', | 329 'video/picture.h', |
| 326 'video/video_decode_accelerator.cc', | 330 'video/video_decode_accelerator.cc', |
| 327 'video/video_decode_accelerator.h', | 331 'video/video_decode_accelerator.h', |
| 328 'webm/webm_cluster_parser.cc', | 332 'webm/webm_cluster_parser.cc', |
| 329 'webm/webm_cluster_parser.h', | 333 'webm/webm_cluster_parser.h', |
| 330 'webm/webm_constants.h', | 334 'webm/webm_constants.h', |
| 331 'webm/webm_content_encodings.cc', | 335 'webm/webm_content_encodings.cc', |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 ], | 549 ], |
| 546 }, | 550 }, |
| 547 }], | 551 }], |
| 548 ['OS=="win"', { | 552 ['OS=="win"', { |
| 549 'sources!': [ | 553 'sources!': [ |
| 550 'audio/pulse/pulse_output.cc', | 554 'audio/pulse/pulse_output.cc', |
| 551 'audio/pulse/pulse_output.h', | 555 'audio/pulse/pulse_output.h', |
| 552 'video/capture/video_capture_device_dummy.cc', | 556 'video/capture/video_capture_device_dummy.cc', |
| 553 'video/capture/video_capture_device_dummy.h', | 557 'video/capture/video_capture_device_dummy.h', |
| 554 ], | 558 ], |
| 559 'link_settings': { |
| 560 'libraries': [ |
| 561 '-lmf.lib', |
| 562 '-lmfplat.lib', |
| 563 '-lmfreadwrite.lib', |
| 564 '-lmfuuid.lib', |
| 565 ], |
| 566 }, |
| 567 'msvs_settings': { |
| 568 'VCLinkerTool': { |
| 569 'DelayLoadDLLs': [ |
| 570 'mf.dll', |
| 571 'mfplat.dll', |
| 572 'mfreadwrite.dll', |
| 573 ], |
| 574 }, |
| 575 }, |
| 555 }], | 576 }], |
| 556 ['proprietary_codecs==1 or branding=="Chrome"', { | 577 ['proprietary_codecs==1 or branding=="Chrome"', { |
| 557 'sources': [ | 578 'sources': [ |
| 558 'mp4/aac.cc', | 579 'mp4/aac.cc', |
| 559 'mp4/aac.h', | 580 'mp4/aac.h', |
| 560 'mp4/avc.cc', | 581 'mp4/avc.cc', |
| 561 'mp4/avc.h', | 582 'mp4/avc.h', |
| 562 'mp4/box_definitions.cc', | 583 'mp4/box_definitions.cc', |
| 563 'mp4/box_definitions.h', | 584 'mp4/box_definitions.h', |
| 564 'mp4/box_reader.cc', | 585 'mp4/box_reader.cc', |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 'media', | 1364 'media', |
| 1344 ], | 1365 ], |
| 1345 'sources': [ | 1366 'sources': [ |
| 1346 'tools/media_bench/media_bench.cc', | 1367 'tools/media_bench/media_bench.cc', |
| 1347 ], | 1368 ], |
| 1348 }, | 1369 }, |
| 1349 ], | 1370 ], |
| 1350 }] | 1371 }] |
| 1351 ], | 1372 ], |
| 1352 } | 1373 } |
| OLD | NEW |