Commit 7b28897b authored by gunsch's avatar gunsch Committed by Commit bot

Chromecast: Makes cast_crash_client common across builds.

R=lcwu@chromium.org,byungchul@chromium.org
BUG=internal b/18934906

Review URL: https://codereview.chromium.org/876633003

Cr-Commit-Position: refs/heads/master@{#314413}
parent 2d743cb6
......@@ -44,6 +44,29 @@
'base/metrics/grouped_histogram.h'
],
}, # end of target 'cast_base'
{
'target_name': 'cast_crash_client',
'type': '<(component)',
'dependencies': [
'../breakpad/breakpad.gyp:breakpad_client',
'../components/components.gyp:crash_component',
],
'sources': [
'crash/cast_crash_reporter_client.cc',
'crash/cast_crash_reporter_client.h',
],
'conditions': [
['chromecast_branding=="Chrome"', {
'dependencies': [
'<(cast_internal_gyp):crash_internal',
],
}, {
'sources': [
'crash/cast_crash_reporter_client_simple.cc',
],
}],
]
}, # end of target 'cast_crash_client'
{
'target_name': 'cast_net',
'type': '<(component)',
......@@ -113,6 +136,7 @@
'type': '<(component)',
'dependencies': [
'cast_base',
'cast_crash_client',
'cast_shell_pak',
'cast_shell_resources',
'cast_version_header',
......@@ -422,29 +446,6 @@
], # end of targets
}, { # OS != "android"
'targets': [
{
'target_name': 'cast_crash_client',
'type': '<(component)',
'dependencies': [
'../breakpad/breakpad.gyp:breakpad_client',
'../components/components.gyp:crash_component',
],
'sources': [
'crash/cast_crash_reporter_client.cc',
'crash/cast_crash_reporter_client.h',
],
'conditions': [
['chromecast_branding=="Chrome"', {
'dependencies': [
'<(cast_internal_gyp):crash_internal',
],
}, {
'sources': [
'crash/cast_crash_reporter_client_simple.cc',
],
}],
]
}, # end of target 'cast_crash_client'
{
'target_name': 'cast_shell_media',
'type': '<(component)',
......@@ -492,7 +493,6 @@
'target_name': 'cast_shell_core',
'type': '<(component)',
'dependencies': [
'cast_crash_client',
'cast_net',
'cast_shell_media',
'cast_shell_common',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment