| 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 assert(is_mac || is_ios) | 5 assert(is_mac || is_ios) |
| 6 | 6 |
| 7 source_set("mac") { | 7 source_set("mac") { |
| 8 set_sources_assignment_filter([]) | 8 set_sources_assignment_filter([]) |
| 9 sources = [ | 9 sources = [ |
| 10 "avfoundation_glue.h", | 10 "avfoundation_glue.h", |
| 11 "avfoundation_glue.mm", | 11 "avfoundation_glue.mm", |
| 12 "coremedia_glue.h", | 12 "coremedia_glue.h", |
| 13 "coremedia_glue.mm", | 13 "coremedia_glue.mm", |
| 14 "corevideo_glue.h", |
| 15 "videotoolbox_glue.h", |
| 16 "videotoolbox_glue.mm", |
| 14 ] | 17 ] |
| 15 set_sources_assignment_filter(sources_assignment_filter) | 18 set_sources_assignment_filter(sources_assignment_filter) |
| 16 } | 19 } |
| OLD | NEW |