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

Unified Diff: chromecast/chromecast.gyp

Issue 1092283003: [Chromecast] CastSysInfo implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. 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
« no previous file with comments | « chromecast/base/cast_sys_info_util_simple.cc ('k') | chromecast/public/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/chromecast.gyp
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp
index fbc60676355bc95e178163bc61f05daeb8413179..a1f7b27e3598e80f7b18dede974d8c12b3acb26c 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_util.h',
+ 'base/cast_sys_info_dummy.cc',
+ 'base/cast_sys_info_dummy.h',
+ ],
+ 'conditions': [
+ ['chromecast_branding!="Chrome"', {
+ 'sources': [
+ 'base/cast_sys_info_util_simple.cc',
+ ],
+ }],
+ ],
+ }, # end of target 'cast_sys_info'
+ {
'target_name': 'cast_version_header',
'type': 'none',
'direct_dependent_settings': {
« no previous file with comments | « chromecast/base/cast_sys_info_util_simple.cc ('k') | chromecast/public/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698