| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 'includes': [ | 6 'includes': [ |
| 7 '../media_variables.gypi' | 7 '../media_variables.gypi' |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN version: //media/blink | 11 # GN version: //media/blink |
| 12 'target_name': 'media_blink', | 12 'target_name': 'media_blink', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 16 '../../cc/cc.gyp:cc', | 16 '../../cc/cc.gyp:cc', |
| 17 '../../cc/blink/cc_blink.gyp:cc_blink', | 17 '../../cc/blink/cc_blink.gyp:cc_blink', |
| 18 '../../gpu/blink/gpu_blink.gyp:gpu_blink', | 18 '../../gpu/blink/gpu_blink.gyp:gpu_blink', |
| 19 '../../gpu/gpu.gyp:gpu', |
| 19 '../../ui/gfx/gfx.gyp:gfx_geometry', | 20 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 20 '../../net/net.gyp:net', | 21 '../../net/net.gyp:net', |
| 21 '../../skia/skia.gyp:skia', | 22 '../../skia/skia.gyp:skia', |
| 22 '../../third_party/WebKit/public/blink.gyp:blink', | 23 '../../third_party/WebKit/public/blink.gyp:blink', |
| 23 '../media.gyp:media', | 24 '../media.gyp:media', |
| 24 '../media.gyp:shared_memory_support', | 25 '../media.gyp:shared_memory_support', |
| 25 '../../url/url.gyp:url_lib', | 26 '../../url/url.gyp:url_lib', |
| 26 ], | 27 ], |
| 27 'defines': [ | 28 'defines': [ |
| 28 'MEDIA_BLINK_IMPLEMENTATION', | 29 'MEDIA_BLINK_IMPLEMENTATION', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 'webmediaplayer_params.cc', | 86 'webmediaplayer_params.cc', |
| 86 'webmediaplayer_params.h', | 87 'webmediaplayer_params.h', |
| 87 'webmediaplayer_util.cc', | 88 'webmediaplayer_util.cc', |
| 88 'webmediaplayer_util.h', | 89 'webmediaplayer_util.h', |
| 89 'webmediasource_impl.cc', | 90 'webmediasource_impl.cc', |
| 90 'webmediasource_impl.h', | 91 'webmediasource_impl.h', |
| 91 'websourcebuffer_impl.cc', | 92 'websourcebuffer_impl.cc', |
| 92 'websourcebuffer_impl.h', | 93 'websourcebuffer_impl.h', |
| 93 ], | 94 ], |
| 94 'conditions': [ | 95 'conditions': [ |
| 96 ['OS=="android" and media_use_ffmpeg==1', { |
| 97 'sources': [ |
| 98 'webmediaplayer_cast_android.cc', |
| 99 'webmediaplayer_cast_android.h', |
| 100 ], |
| 101 }], |
| 95 ['OS=="android" and media_use_ffmpeg==0', { | 102 ['OS=="android" and media_use_ffmpeg==0', { |
| 96 'sources!': [ | 103 'sources!': [ |
| 97 'encrypted_media_player_support.cc', | 104 'encrypted_media_player_support.cc', |
| 98 'encrypted_media_player_support.h', | 105 'encrypted_media_player_support.h', |
| 99 'webmediaplayer_impl.cc', | 106 'webmediaplayer_impl.cc', |
| 100 'webmediaplayer_impl.h', | 107 'webmediaplayer_impl.h', |
| 101 ], | 108 ], |
| 102 }], | 109 }], |
| 103 ], | 110 ], |
| 104 }, | 111 }, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 172 ], | 179 ], |
| 173 } | 180 } |
| 174 ], | 181 ], |
| 175 ], | 182 ], |
| 176 }, | 183 }, |
| 177 ], | 184 ], |
| 178 }], | 185 }], |
| 179 ], | 186 ], |
| 180 } | 187 } |
| OLD | NEW |