| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'target_name': 'cast_base', | 55 'target_name': 'cast_base', |
| 56 'type': '<(component)', | 56 'type': '<(component)', |
| 57 'dependencies': [ | 57 'dependencies': [ |
| 58 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
| 59 ], | 59 ], |
| 60 'sources': [ | 60 'sources': [ |
| 61 'base/cast_paths.cc', | 61 'base/cast_paths.cc', |
| 62 'base/cast_paths.h', | 62 'base/cast_paths.h', |
| 63 'base/chromecast_switches.cc', | 63 'base/chromecast_switches.cc', |
| 64 'base/chromecast_switches.h', | 64 'base/chromecast_switches.h', |
| 65 'base/error_codes.cc', |
| 66 'base/error_codes.h', |
| 65 'base/metrics/cast_histograms.h', | 67 'base/metrics/cast_histograms.h', |
| 66 'base/metrics/cast_metrics_helper.cc', | 68 'base/metrics/cast_metrics_helper.cc', |
| 67 'base/metrics/cast_metrics_helper.h', | 69 'base/metrics/cast_metrics_helper.h', |
| 68 'base/metrics/grouped_histogram.cc', | 70 'base/metrics/grouped_histogram.cc', |
| 69 'base/metrics/grouped_histogram.h', | 71 'base/metrics/grouped_histogram.h', |
| 70 'base/path_utils.cc', | 72 'base/path_utils.cc', |
| 71 'base/path_utils.h', | 73 'base/path_utils.h', |
| 72 'base/process_utils.cc', | 74 'base/process_utils.cc', |
| 73 'base/process_utils.h', | 75 'base/process_utils.h', |
| 74 'base/serializers.cc', | 76 'base/serializers.cc', |
| 75 'base/serializers.h' | 77 'base/serializers.h' |
| 76 ], | 78 ], |
| 77 }, # end of target 'cast_base' | 79 }, # end of target 'cast_base' |
| 78 { | 80 { |
| 79 'target_name': 'cast_crash_client', | 81 'target_name': 'cast_crash_client', |
| 80 'type': '<(component)', | 82 'type': '<(component)', |
| 81 'dependencies': [ | 83 'dependencies': [ |
| 84 'cast_base', |
| 85 'cast_version_header', |
| 82 '../breakpad/breakpad.gyp:breakpad_client', | 86 '../breakpad/breakpad.gyp:breakpad_client', |
| 83 '../components/components.gyp:crash_component', | 87 '../components/components.gyp:crash_component', |
| 84 ], | 88 ], |
| 85 'sources': [ | 89 'sources': [ |
| 90 'crash/app_state_tracker.cc', |
| 91 'crash/app_state_tracker.h', |
| 92 'crash/crash_util.cc', |
| 93 'crash/crash_util.h', |
| 86 'crash/cast_crash_keys.cc', | 94 'crash/cast_crash_keys.cc', |
| 87 'crash/cast_crash_keys.h', | 95 'crash/cast_crash_keys.h', |
| 88 'crash/cast_crash_reporter_client.cc', | 96 'crash/cast_crash_reporter_client.cc', |
| 89 'crash/cast_crash_reporter_client.h', | 97 'crash/cast_crash_reporter_client.h', |
| 98 'crash/dummy_minidump_generator.cc', |
| 99 'crash/dummy_minidump_generator.h', |
| 100 'crash/dump_info.cc', |
| 101 'crash/dump_info.h', |
| 102 'crash/minidump_generator.h', |
| 103 'crash/minidump_manager.cc', |
| 104 'crash/minidump_manager.h', |
| 105 'crash/minidump_params.cc', |
| 106 'crash/minidump_params.h', |
| 107 'crash/minidump_writer.cc', |
| 108 'crash/minidump_writer.h', |
| 90 ], | 109 ], |
| 91 'conditions': [ | |
| 92 ['chromecast_branding=="Chrome"', { | |
| 93 'dependencies': [ | |
| 94 'internal/chromecast_internal.gyp:crash_internal', | |
| 95 ], | |
| 96 }, { | |
| 97 'sources': [ | |
| 98 'crash/cast_crash_reporter_client_simple.cc', | |
| 99 ], | |
| 100 }], | |
| 101 ] | |
| 102 }, # end of target 'cast_crash_client' | 110 }, # end of target 'cast_crash_client' |
| 103 { | 111 { |
| 104 'target_name': 'cast_net', | 112 'target_name': 'cast_net', |
| 105 'type': '<(component)', | 113 'type': '<(component)', |
| 106 'sources': [ | 114 'sources': [ |
| 107 'net/connectivity_checker.cc', | 115 'net/connectivity_checker.cc', |
| 108 'net/connectivity_checker.h', | 116 'net/connectivity_checker.h', |
| 109 'net/connectivity_checker_impl.cc', | 117 'net/connectivity_checker_impl.cc', |
| 110 'net/connectivity_checker_impl.h', | 118 'net/connectivity_checker_impl.h', |
| 111 'net/fake_connectivity_checker.cc', | 119 'net/fake_connectivity_checker.cc', |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 'sources': [ | 661 'sources': [ |
| 654 'graphics/cast_egl_platform_default.cc', | 662 'graphics/cast_egl_platform_default.cc', |
| 655 'graphics/graphics_properties_default.cc', | 663 'graphics/graphics_properties_default.cc', |
| 656 'graphics/osd_plane_default.cc' | 664 'graphics/osd_plane_default.cc' |
| 657 ], | 665 ], |
| 658 } | 666 } |
| 659 ] | 667 ] |
| 660 }], | 668 }], |
| 661 ], # end of conditions | 669 ], # end of conditions |
| 662 } | 670 } |
| OLD | NEW |