| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 source_set("media") { | 8 source_set("media") { |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 if (use_playready) { | 23 if (use_playready) { |
| 24 public_configs = [ "//chromecast:playready_config" ] | 24 public_configs = [ "//chromecast:playready_config" ] |
| 25 } | 25 } |
| 26 } | 26 } |
| 27 | 27 |
| 28 mojom("interfaces") { | 28 mojom("interfaces") { |
| 29 sources = [ | 29 sources = [ |
| 30 "media_caps.mojom", | 30 "media_caps.mojom", |
| 31 ] | 31 ] |
| 32 |
| 33 use_once_callback = true |
| 32 } | 34 } |
| OLD | NEW |