Chromium Code Reviews| Index: chromecast/chromecast.gyp |
| diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp |
| index fbc60676355bc95e178163bc61f05daeb8413179..6339504ce31bd37b940d38da79b875f8dba1c631 100644 |
| --- a/chromecast/chromecast.gyp |
| +++ b/chromecast/chromecast.gyp |
| @@ -38,6 +38,7 @@ |
| 'sources': [ |
| 'public/cast_egl_platform.h', |
| 'public/cast_egl_platform_shlib.h', |
| + 'public/cast_sys_info.h', |
| 'public/chromecast_export.h', |
| 'public/graphics_properties_shlib.h' |
| ], |
| @@ -177,6 +178,7 @@ |
| 'cast_net', |
| 'cast_shell_pak', |
| 'cast_shell_resources', |
| + 'cast_sys_info', |
| 'cast_version_header', |
| 'chromecast_locales.gyp:chromecast_locales_pak', |
| 'chromecast_locales.gyp:chromecast_settings', |
| @@ -311,6 +313,26 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'cast_sys_info', |
| + 'type': '<(component)', |
| + 'dependencies': [ |
| + 'cast_public_api', |
| + '../base/base.gyp:base', |
| + ], |
| + 'sources': [ |
| + 'base/cast_sys_info.h', |
|
lcwu1
2015/04/22 21:57:54
I think having the same name here (as the one in p
derekjchow1
2015/04/22 22:22:04
Done.
|
| + 'base/cast_sys_info_dummy.cc', |
| + 'base/cast_sys_info_dummy.h', |
| + ], |
| + 'conditions': [ |
| + ['chromecast_branding!="Chrome"', { |
| + 'sources': [ |
| + 'base/cast_sys_info_simple.cc', |
| + ], |
| + }], |
| + ], |
| + }, # end of target 'cast_sys_info' |
| + { |
| 'target_name': 'cast_version_header', |
| 'type': 'none', |
| 'direct_dependent_settings': { |