OLD | NEW |
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 'cast_build_release': 'internal/build/cast_build_release', | 9 'cast_build_release': 'internal/build/cast_build_release', |
10 'cast_is_debug_build%': 0, | 10 'cast_is_debug_build%': 0, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'target_name': 'cast_base', | 56 'target_name': 'cast_base', |
57 'type': '<(component)', | 57 'type': '<(component)', |
58 'dependencies': [ | 58 'dependencies': [ |
59 '../base/base.gyp:base', | 59 '../base/base.gyp:base', |
60 ], | 60 ], |
61 'sources': [ | 61 'sources': [ |
62 'base/cast_paths.cc', | 62 'base/cast_paths.cc', |
63 'base/cast_paths.h', | 63 'base/cast_paths.h', |
64 'base/chromecast_switches.cc', | 64 'base/chromecast_switches.cc', |
65 'base/chromecast_switches.h', | 65 'base/chromecast_switches.h', |
| 66 'base/error_codes.cc', |
| 67 'base/error_codes.h', |
66 'base/metrics/cast_histograms.h', | 68 'base/metrics/cast_histograms.h', |
67 'base/metrics/cast_metrics_helper.cc', | 69 'base/metrics/cast_metrics_helper.cc', |
68 'base/metrics/cast_metrics_helper.h', | 70 'base/metrics/cast_metrics_helper.h', |
69 'base/metrics/grouped_histogram.cc', | 71 'base/metrics/grouped_histogram.cc', |
70 'base/metrics/grouped_histogram.h', | 72 'base/metrics/grouped_histogram.h', |
71 'base/path_utils.cc', | 73 'base/path_utils.cc', |
72 'base/path_utils.h', | 74 'base/path_utils.h', |
73 'base/process_utils.cc', | 75 'base/process_utils.cc', |
74 'base/process_utils.h', | 76 'base/process_utils.h', |
75 'base/serializers.cc', | 77 'base/serializers.cc', |
76 'base/serializers.h' | 78 'base/serializers.h' |
77 ], | 79 ], |
78 }, # end of target 'cast_base' | 80 }, # end of target 'cast_base' |
79 { | 81 { |
| 82 'target_name': 'cast_crash', |
| 83 'type': '<(component)', |
| 84 'include_dirs': [ |
| 85 # TODO(gfhuang): we should not need to include this directly, but |
| 86 # somehow depending on component.gyp:breakpad_component is not |
| 87 # working as expected. |
| 88 '../breakpad/src', |
| 89 ], |
| 90 'dependencies': [ |
| 91 'cast_base', |
| 92 'cast_version_header', |
| 93 '../breakpad/breakpad.gyp:breakpad_client', |
| 94 ], |
| 95 'sources': [ |
| 96 'crash/app_state_tracker.cc', |
| 97 'crash/app_state_tracker.h', |
| 98 'crash/cast_crash_keys.cc', |
| 99 'crash/cast_crash_keys.h', |
| 100 'crash/cast_crashdump_uploader.cc', |
| 101 'crash/cast_crashdump_uploader.h', |
| 102 'crash/linux/crash_util.cc', |
| 103 'crash/linux/crash_util.h', |
| 104 'crash/linux/dummy_minidump_generator.cc', |
| 105 'crash/linux/dummy_minidump_generator.h', |
| 106 'crash/linux/dump_info.cc', |
| 107 'crash/linux/dump_info.h', |
| 108 'crash/linux/minidump_generator.h', |
| 109 'crash/linux/synchronized_minidump_manager.cc', |
| 110 'crash/linux/synchronized_minidump_manager.h', |
| 111 'crash/linux/minidump_params.cc', |
| 112 'crash/linux/minidump_params.h', |
| 113 'crash/linux/minidump_writer.cc', |
| 114 'crash/linux/minidump_writer.h', |
| 115 ], |
| 116 }, # end of target 'cast_crash' |
| 117 { |
80 'target_name': 'cast_crash_client', | 118 'target_name': 'cast_crash_client', |
81 'type': '<(component)', | 119 'type': '<(component)', |
82 'dependencies': [ | 120 'dependencies': [ |
83 '../breakpad/breakpad.gyp:breakpad_client', | 121 'cast_crash', |
84 '../components/components.gyp:crash_component', | 122 '../components/components.gyp:crash_component', |
| 123 '../content/content.gyp:content_common', |
85 ], | 124 ], |
86 'sources': [ | 125 'sources' : [ |
87 'crash/cast_crash_keys.cc', | 126 # TODO(slan): Move android crash_client here as well. |
88 'crash/cast_crash_keys.h', | 127 'app/linux/cast_crash_reporter_client.cc', |
89 'crash/cast_crash_reporter_client.cc', | 128 'app/linux/cast_crash_reporter_client.h', |
90 'crash/cast_crash_reporter_client.h', | |
91 ], | 129 ], |
92 'conditions': [ | |
93 ['chromecast_branding=="Chrome"', { | |
94 'dependencies': [ | |
95 'internal/chromecast_internal.gyp:crash_internal', | |
96 ], | |
97 }, { | |
98 'sources': [ | |
99 'crash/cast_crash_reporter_client_simple.cc', | |
100 ], | |
101 }], | |
102 ] | |
103 }, # end of target 'cast_crash_client' | 130 }, # end of target 'cast_crash_client' |
104 { | 131 { |
105 'target_name': 'cast_net', | 132 'target_name': 'cast_net', |
106 'type': '<(component)', | 133 'type': '<(component)', |
107 'sources': [ | 134 'sources': [ |
108 'net/connectivity_checker.cc', | 135 'net/connectivity_checker.cc', |
109 'net/connectivity_checker.h', | 136 'net/connectivity_checker.h', |
110 'net/connectivity_checker_impl.cc', | 137 'net/connectivity_checker_impl.cc', |
111 'net/connectivity_checker_impl.h', | 138 'net/connectivity_checker_impl.h', |
112 'net/fake_connectivity_checker.cc', | 139 'net/fake_connectivity_checker.cc', |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 '../components/components.gyp:external_video_surface', | 472 '../components/components.gyp:external_video_surface', |
446 '../content/content.gyp:content', | 473 '../content/content.gyp:content', |
447 '../skia/skia.gyp:skia', | 474 '../skia/skia.gyp:skia', |
448 '../ui/gfx/gfx.gyp:gfx', | 475 '../ui/gfx/gfx.gyp:gfx', |
449 '../ui/gl/gl.gyp:gl', | 476 '../ui/gl/gl.gyp:gl', |
450 ], | 477 ], |
451 'include_dirs': [ | 478 'include_dirs': [ |
452 '../breakpad/src', | 479 '../breakpad/src', |
453 ], | 480 ], |
454 'sources': [ | 481 'sources': [ |
455 'base/cast_sys_info_android.cc', | |
456 'base/cast_sys_info_android.h', | |
457 'base/chromecast_config_android.cc', | |
458 'base/chromecast_config_android.h', | |
459 'android/cast_jni_registrar.cc', | 482 'android/cast_jni_registrar.cc', |
460 'android/cast_jni_registrar.h', | 483 'android/cast_jni_registrar.h', |
461 'android/cast_metrics_helper_android.cc', | 484 'android/cast_metrics_helper_android.cc', |
462 'android/cast_metrics_helper_android.h', | 485 'android/cast_metrics_helper_android.h', |
463 'android/platform_jni_loader.h', | 486 'android/platform_jni_loader.h', |
| 487 'app/android/cast_crash_reporter_client_android.cc', |
| 488 'app/android/cast_crash_reporter_client_android.h', |
464 'app/android/cast_jni_loader.cc', | 489 'app/android/cast_jni_loader.cc', |
| 490 'app/android/crash_handler.cc', |
| 491 'app/android/crash_handler.h', |
| 492 'base/cast_sys_info_android.cc', |
| 493 'base/cast_sys_info_android.h', |
| 494 'base/chromecast_config_android.cc', |
| 495 'base/chromecast_config_android.h', |
465 'browser/android/cast_window_android.cc', | 496 'browser/android/cast_window_android.cc', |
466 'browser/android/cast_window_android.h', | 497 'browser/android/cast_window_android.h', |
467 'browser/android/cast_window_manager.cc', | 498 'browser/android/cast_window_manager.cc', |
468 'browser/android/cast_window_manager.h', | 499 'browser/android/cast_window_manager.h', |
469 'crash/android/cast_crash_reporter_client_android.cc', | |
470 'crash/android/cast_crash_reporter_client_android.h', | |
471 'crash/android/crash_handler.cc', | |
472 'crash/android/crash_handler.h', | |
473 ], | 500 ], |
474 'conditions': [ | 501 'conditions': [ |
475 ['chromecast_branding=="Chrome"', { | 502 ['chromecast_branding=="Chrome"', { |
476 'dependencies': [ | 503 'dependencies': [ |
477 'internal/chromecast_internal.gyp:cast_shell_android_internal' | 504 'internal/chromecast_internal.gyp:cast_shell_android_internal' |
478 ], | 505 ], |
479 }, { | 506 }, { |
480 'sources': [ | 507 'sources': [ |
481 'android/platform_jni_loader_stub.cc', | 508 'android/platform_jni_loader_stub.cc', |
482 ], | 509 ], |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 'sources': [ | 692 'sources': [ |
666 'graphics/cast_egl_platform_default.cc', | 693 'graphics/cast_egl_platform_default.cc', |
667 'graphics/graphics_properties_default.cc', | 694 'graphics/graphics_properties_default.cc', |
668 'graphics/osd_plane_default.cc' | 695 'graphics/osd_plane_default.cc' |
669 ], | 696 ], |
670 } | 697 } |
671 ] | 698 ] |
672 }], | 699 }], |
673 ], # end of conditions | 700 ], # end of conditions |
674 } | 701 } |
OLD | NEW |