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

Side by Side Diff: chromecast/chromecast.gyp

Issue 731933005: Chromecast: adds crash handling for Linux build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « chromecast/app/cast_main_delegate.cc ('k') | chromecast/crash/cast_crash_reporter_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'cast_base', 98 'cast_base',
99 'cast_shell_pak', 99 'cast_shell_pak',
100 'cast_shell_resources', 100 'cast_shell_resources',
101 'cast_version_header', 101 'cast_version_header',
102 'chromecast_locales.gyp:chromecast_locales_pak', 102 'chromecast_locales.gyp:chromecast_locales_pak',
103 'chromecast_locales.gyp:chromecast_settings', 103 'chromecast_locales.gyp:chromecast_settings',
104 'media/media.gyp:media_base', 104 'media/media.gyp:media_base',
105 '../base/base.gyp:base', 105 '../base/base.gyp:base',
106 '../components/components.gyp:cdm_renderer', 106 '../components/components.gyp:cdm_renderer',
107 '../components/components.gyp:component_metrics_proto', 107 '../components/components.gyp:component_metrics_proto',
108 '../components/components.gyp:crash_component',
108 '../components/components.gyp:metrics', 109 '../components/components.gyp:metrics',
109 '../components/components.gyp:metrics_gpu', 110 '../components/components.gyp:metrics_gpu',
110 '../components/components.gyp:metrics_net', 111 '../components/components.gyp:metrics_net',
111 '../components/components.gyp:metrics_profiler', 112 '../components/components.gyp:metrics_profiler',
112 '../content/content.gyp:content', 113 '../content/content.gyp:content',
113 '../content/content.gyp:content_app_browser', 114 '../content/content.gyp:content_app_browser',
114 '../skia/skia.gyp:skia', 115 '../skia/skia.gyp:skia',
115 '../third_party/WebKit/public/blink.gyp:blink', 116 '../third_party/WebKit/public/blink.gyp:blink',
116 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 117 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
117 ], 118 ],
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 ], 406 ],
406 }, 407 },
407 'variables': { 408 'variables': {
408 'jni_gen_package': 'chromecast', 409 'jni_gen_package': 'chromecast',
409 }, 410 },
410 'includes': [ '../build/jni_generator.gypi' ], 411 'includes': [ '../build/jni_generator.gypi' ],
411 }, 412 },
412 ], # end of targets 413 ], # end of targets
413 }, { # OS != "android" 414 }, { # OS != "android"
414 'targets': [ 415 'targets': [
416 {
417 'target_name': 'cast_crash_client',
418 'type': '<(component)',
419 'dependencies': [
420 '../breakpad/breakpad.gyp:breakpad_client',
421 '../components/components.gyp:crash_component',
422 ],
423 'sources': [
424 'crash/cast_crash_reporter_client.cc',
425 'crash/cast_crash_reporter_client.h',
426 ],
427 'conditions': [
428 ['chromecast_branding=="Chrome"', {
429 'dependencies': [
430 '<(cast_internal_gyp):crash_internal',
431 ],
432 }, {
433 'sources': [
434 'crash/cast_crash_reporter_client_simple.cc',
435 ],
436 }],
437 ]
438 }, # end of target 'cast_crash_client'
415 # This target contains all of the primary code of |cast_shell|, except 439 # This target contains all of the primary code of |cast_shell|, except
416 # for |main|. This allows end-to-end tests using |cast_shell|. 440 # for |main|. This allows end-to-end tests using |cast_shell|.
417 # This also includes all targets that cannot be built on Android. 441 # This also includes all targets that cannot be built on Android.
418 { 442 {
419 'target_name': 'cast_shell_core', 443 'target_name': 'cast_shell_core',
420 'type': '<(component)', 444 'type': '<(component)',
421 'dependencies': [ 445 'dependencies': [
446 'cast_crash_client',
422 'cast_net', 447 'cast_net',
423 'cast_shell_common', 448 'cast_shell_common',
424 'media/media.gyp:cast_media', 449 'media/media.gyp:cast_media',
425 '../ui/aura/aura.gyp:aura_test_support', 450 '../ui/aura/aura.gyp:aura_test_support',
426 ], 451 ],
427 'conditions': [ 452 'conditions': [
428 ['chromecast_branding=="Chrome"', { 453 ['chromecast_branding=="Chrome"', {
429 'dependencies': [ 454 'dependencies': [
430 '<(cast_internal_gyp):cast_gfx_internal', 455 '<(cast_internal_gyp):cast_gfx_internal',
431 ], 456 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'sources': [ 499 'sources': [
475 'browser/test/chromecast_browser_test.cc', 500 'browser/test/chromecast_browser_test.cc',
476 'browser/test/chromecast_browser_test.h', 501 'browser/test/chromecast_browser_test.h',
477 'browser/test/chromecast_browser_test_runner.cc', 502 'browser/test/chromecast_browser_test_runner.cc',
478 ], 503 ],
479 }, 504 },
480 ], # end of targets 505 ], # end of targets
481 }], 506 }],
482 ], # end of conditions 507 ], # end of conditions
483 } 508 }
OLDNEW
« no previous file with comments | « chromecast/app/cast_main_delegate.cc ('k') | chromecast/crash/cast_crash_reporter_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698