| 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 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 # longer referenced from internal code. | 38 # longer referenced from internal code. |
| 39 {'target_name': 'cast_media_audio', 'type': 'none'}, | 39 {'target_name': 'cast_media_audio', 'type': 'none'}, |
| 40 | 40 |
| 41 { | 41 { |
| 42 'target_name': 'cast_base', | 42 'target_name': 'cast_base', |
| 43 'type': '<(component)', | 43 'type': '<(component)', |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 '../base/base.gyp:base', | 45 '../base/base.gyp:base', |
| 46 ], | 46 ], |
| 47 'sources': [ | 47 'sources': [ |
| 48 'base/cast_paths.cc', |
| 49 'base/cast_paths.h', |
| 48 'base/metrics/cast_histograms.h', | 50 'base/metrics/cast_histograms.h', |
| 49 'base/metrics/cast_metrics_helper.cc', | 51 'base/metrics/cast_metrics_helper.cc', |
| 50 'base/metrics/cast_metrics_helper.h', | 52 'base/metrics/cast_metrics_helper.h', |
| 51 'base/metrics/grouped_histogram.cc', | 53 'base/metrics/grouped_histogram.cc', |
| 52 'base/metrics/grouped_histogram.h' | 54 'base/metrics/grouped_histogram.h' |
| 53 ], | 55 ], |
| 54 }, # end of target 'cast_base' | 56 }, # end of target 'cast_base' |
| 55 { | 57 { |
| 56 'target_name': 'cast_crash_client', | 58 'target_name': 'cast_crash_client', |
| 57 'type': '<(component)', | 59 'type': '<(component)', |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 'browser/metrics/cast_stability_metrics_provider.h', | 242 'browser/metrics/cast_stability_metrics_provider.h', |
| 241 'browser/metrics/platform_metrics_providers.h', | 243 'browser/metrics/platform_metrics_providers.h', |
| 242 'browser/pref_service_helper.cc', | 244 'browser/pref_service_helper.cc', |
| 243 'browser/pref_service_helper.h', | 245 'browser/pref_service_helper.h', |
| 244 'browser/service/cast_service.cc', | 246 'browser/service/cast_service.cc', |
| 245 'browser/service/cast_service.h', | 247 'browser/service/cast_service.h', |
| 246 'browser/url_request_context_factory.cc', | 248 'browser/url_request_context_factory.cc', |
| 247 'browser/url_request_context_factory.h', | 249 'browser/url_request_context_factory.h', |
| 248 'common/cast_content_client.cc', | 250 'common/cast_content_client.cc', |
| 249 'common/cast_content_client.h', | 251 'common/cast_content_client.h', |
| 250 'common/cast_paths.cc', | |
| 251 'common/cast_paths.h', | |
| 252 'common/cast_resource_delegate.cc', | 252 'common/cast_resource_delegate.cc', |
| 253 'common/cast_resource_delegate.h', | 253 'common/cast_resource_delegate.h', |
| 254 'common/chromecast_switches.cc', | 254 'common/chromecast_switches.cc', |
| 255 'common/chromecast_switches.h', | 255 'common/chromecast_switches.h', |
| 256 'common/media/cast_messages.h', | 256 'common/media/cast_messages.h', |
| 257 'common/media/cast_message_generator.cc', | 257 'common/media/cast_message_generator.cc', |
| 258 'common/media/cast_message_generator.h', | 258 'common/media/cast_message_generator.h', |
| 259 'common/platform_client_auth.h', | 259 'common/platform_client_auth.h', |
| 260 'common/pref_names.cc', | 260 'common/pref_names.cc', |
| 261 'common/pref_names.h', | 261 'common/pref_names.h', |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 575 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
| 576 # Allow the cast shell to find the NSS module in the same directory. | 576 # Allow the cast shell to find the NSS module in the same directory. |
| 577 'ldflags': [ | 577 'ldflags': [ |
| 578 '-Wl,-rpath=\$$ORIGIN' | 578 '-Wl,-rpath=\$$ORIGIN' |
| 579 ], | 579 ], |
| 580 }, | 580 }, |
| 581 ], # end of targets | 581 ], # end of targets |
| 582 }], | 582 }], |
| 583 ], # end of conditions | 583 ], # end of conditions |
| 584 } | 584 } |
| OLD | NEW |