Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8287)

Unified Diff: chromecast/chromecast.gyp

Issue 1092283003: [Chromecast] CastSysInfo implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comments. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromecast/chromecast.gyp
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp
index fbc60676355bc95e178163bc61f05daeb8413179..dfb5719aa82820e9457ed59abf37da2cadeae2f0 100644
--- a/chromecast/chromecast.gyp
+++ b/chromecast/chromecast.gyp
@@ -38,6 +38,8 @@
'sources': [
'public/cast_egl_platform.h',
'public/cast_egl_platform_shlib.h',
+ 'public/cast_sys_info.h',
+ 'public/cast_sys_info_shlib.h',
'public/chromecast_export.h',
'public/graphics_properties_shlib.h'
],
@@ -177,6 +179,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 +314,26 @@
],
},
{
+ 'target_name': 'cast_sys_info',
+ 'type': '<(component)',
+ 'dependencies': [
+ 'cast_public_api',
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'base/cast_sys_info.h',
+ 'base/cast_sys_info_dummy.cc',
+ 'base/cast_sys_info_dummy.h',
+ ],
+ 'conditions': [
+ ['chromecast_branding!="Chrome" or OS=="android"', {
+ 'sources': [
+ 'base/cast_sys_info_simple.cc',
+ ],
+ }],
+ ],
+ }, # end of target 'cast_sys_info'
+ {
'target_name': 'cast_version_header',
'type': 'none',
'direct_dependent_settings': {

Powered by Google App Engine
This is Rietveld 408576698