| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 | 7 |
| 8 source_set("cdm") { | 8 source_set("cdm") { |
| 9 sources = [ | 9 sources = [ |
| 10 "chromecast_init_data.cc", | 10 "chromecast_init_data.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "//chromecast/media/base", | 30 "//chromecast/media/base", |
| 31 "//url:url", | 31 "//url:url", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 if (is_android && use_playready) { | 35 if (is_android && use_playready) { |
| 36 sources += [ | 36 sources += [ |
| 37 "playready_drm_delegate_android.cc", | 37 "playready_drm_delegate_android.cc", |
| 38 "playready_drm_delegate_android.h", | 38 "playready_drm_delegate_android.h", |
| 39 ] | 39 ] |
| 40 | |
| 41 deps += [ "//media/base/android" ] | |
| 42 } | 40 } |
| 43 } | 41 } |
| OLD | NEW |