Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 # GN version: //media/blink | |
| 9 'target_name': 'media_blink', | |
| 10 'type': '<(component)', | |
| 11 'dependencies': [ | |
| 12 '../../base/base.gyp:base', | |
| 13 '../../cc/cc.gyp:cc', | |
| 14 '../../cc/blink/cc_blink.gyp:cc_blink', | |
| 15 '../../ui/gfx/gfx.gyp:gfx_geometry', | |
| 16 '../../net/net.gyp:net', | |
| 17 '../../third_party/WebKit/public/blink.gyp:blink', | |
| 18 '../media.gyp:media', | |
| 19 '../media.gyp:shared_memory_support', | |
| 20 '../../url/url.gyp:url_lib', | |
| 21 ], | |
| 22 'defines': [ | |
| 23 'MEDIA_IMPLEMENTATION', | |
| 24 ], | |
| 25 # This sources list is duplicated in //media/blink/BUILD.gn | |
| 26 'sources': [ | |
| 27 'active_loader.cc', | |
| 28 'active_loader.h', | |
| 29 'buffered_data_source.cc', | |
| 30 'buffered_data_source.h', | |
| 31 'buffered_data_source_host_impl.cc', | |
| 32 'buffered_data_source_host_impl.h', | |
| 33 'buffered_resource_loader.cc', | |
| 34 'buffered_resource_loader.h', | |
| 35 'encrypted_media_player_support.cc', | |
| 36 'encrypted_media_player_support.h', | |
| 37 'cache_util.cc', | |
| 38 'cache_util.h', | |
| 39 'texttrack_impl.cc', | |
| 40 'texttrack_impl.h', | |
| 41 'video_frame_compositor.cc', | |
| 42 'video_frame_compositor.h', | |
| 43 'webaudiosourceprovider_impl.cc', | |
| 44 'webaudiosourceprovider_impl.h', | |
| 45 'webinbandtexttrack_impl.cc', | |
| 46 'webinbandtexttrack_impl.h', | |
| 47 'webmediaplayer_delegate.h', | |
| 48 'webmediaplayer_impl.cc', | |
| 49 'webmediaplayer_impl.h', | |
| 50 'webmediaplayer_params.cc', | |
| 51 'webmediaplayer_params.h', | |
| 52 'webmediaplayer_util.cc', | |
| 53 'webmediaplayer_util.h', | |
| 54 'webmediasource_impl.cc', | |
| 55 'webmediasource_impl.h', | |
| 56 'websourcebuffer_impl.cc', | |
| 57 'websourcebuffer_impl.h', | |
| 58 ], | |
| 59 'conditions': [ | |
| 60 ['OS=="android"', { | |
| 61 'sources!': [ | |
| 62 'webmediaplayer_impl.cc', | |
| 63 ], | |
| 64 }, | |
| 65 ], | |
| 66 ], | |
| 67 }, | |
| 68 { | |
| 69 'target_name': 'media_blink_unittests', | |
|
scherkus (not reviewing)
2014/09/04 23:00:36
I believe we'll want to get these running on bots
acolwell GONE FROM CHROMIUM
2014/09/05 00:23:43
Acknowledged.
| |
| 70 'type': '<(gtest_target_type)', | |
| 71 'dependencies': [ | |
| 72 'media_blink', | |
| 73 '../media.gyp:media', | |
| 74 '../media.gyp:media_test_support', | |
| 75 '../../base/base.gyp:base', | |
| 76 '../../base/base.gyp:test_support_base', | |
| 77 '../../cc/cc.gyp:cc', | |
| 78 '../../cc/blink/cc_blink.gyp:cc_blink', | |
| 79 '../../net/net.gyp:net', | |
| 80 '../../testing/gmock.gyp:gmock', | |
| 81 '../../testing/gtest.gyp:gtest', | |
| 82 '../../third_party/WebKit/public/blink.gyp:blink', | |
| 83 '../../ui/gfx/gfx.gyp:gfx', | |
| 84 '../../ui/gfx/gfx.gyp:gfx_geometry', | |
| 85 '../../ui/gfx/gfx.gyp:gfx_test_support', | |
| 86 '../../url/url.gyp:url_lib', | |
| 87 ], | |
| 88 'sources': [ | |
| 89 'buffered_data_source_host_impl_unittest.cc', | |
| 90 'buffered_data_source_unittest.cc', | |
| 91 'buffered_resource_loader_unittest.cc', | |
| 92 'cache_util_unittest.cc', | |
| 93 'mock_webframeclient.h', | |
| 94 'mock_weburlloader.cc', | |
| 95 'mock_weburlloader.h', | |
| 96 'run_all_unittests.cc', | |
| 97 'test_response_generator.cc', | |
| 98 'test_response_generator.h', | |
| 99 'video_frame_compositor_unittest.cc', | |
| 100 'webaudiosourceprovider_impl_unittest.cc', | |
| 101 ], | |
| 102 }, | |
| 103 ] | |
| 104 } | |
| OLD | NEW |