| 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 config("public_config") { | 5 config("public_config") { |
| 6 include_dirs = [ "//chromecast/public" ] | 6 include_dirs = [ "//chromecast/public" ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("public") { | 9 source_set("public") { |
| 10 sources = [ | 10 sources = [ |
| 11 "avsettings.h", | 11 "avsettings.h", |
| 12 "cast_egl_platform.h", | 12 "cast_egl_platform.h", |
| 13 "cast_egl_platform_shlib.h", | 13 "cast_egl_platform_shlib.h", |
| 14 "cast_media_shlib.h", | 14 "cast_media_shlib.h", |
| 15 "cast_sys_info.h", | 15 "cast_sys_info.h", |
| 16 "cast_sys_info_shlib.h", | 16 "cast_sys_info_shlib.h", |
| 17 "chromecast_export.h", | 17 "chromecast_export.h", |
| 18 "graphics_properties_shlib.h", | 18 "graphics_properties_shlib.h", |
| 19 "graphics_types.h", | 19 "graphics_types.h", |
| 20 "media_codec_support_shlib.h", | 20 "media_codec_support_shlib.h", |
| 21 "osd_plane.h", | 21 "osd_plane.h", |
| 22 "osd_plane_shlib.h", | 22 "osd_plane_shlib.h", |
| 23 "osd_surface.h", | 23 "osd_surface.h", |
| 24 "task_runner.h", | 24 "task_runner.h", |
| 25 "video_plane.h", | 25 "video_plane.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 public_configs = [ ":public_config" ] | 28 public_configs = [ ":public_config" ] |
| 29 public_deps = [ |
| 30 "//chromecast/public/media:media", |
| 31 ] |
| 29 } | 32 } |
| OLD | NEW |