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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 'browser/url_request_context_factory.cc', | 220 'browser/url_request_context_factory.cc', |
221 'browser/url_request_context_factory.h', | 221 'browser/url_request_context_factory.h', |
222 'common/cast_content_client.cc', | 222 'common/cast_content_client.cc', |
223 'common/cast_content_client.h', | 223 'common/cast_content_client.h', |
224 'common/cast_paths.cc', | 224 'common/cast_paths.cc', |
225 'common/cast_paths.h', | 225 'common/cast_paths.h', |
226 'common/cast_resource_delegate.cc', | 226 'common/cast_resource_delegate.cc', |
227 'common/cast_resource_delegate.h', | 227 'common/cast_resource_delegate.h', |
228 'common/chromecast_switches.cc', | 228 'common/chromecast_switches.cc', |
229 'common/chromecast_switches.h', | 229 'common/chromecast_switches.h', |
| 230 'common/media/cast_messages.h', |
| 231 'common/media/cast_message_generator.cc', |
| 232 'common/media/cast_message_generator.h', |
230 'common/platform_client_auth.h', | 233 'common/platform_client_auth.h', |
231 'common/pref_names.cc', | 234 'common/pref_names.cc', |
232 'common/pref_names.h', | 235 'common/pref_names.h', |
233 'renderer/cast_content_renderer_client.cc', | 236 'renderer/cast_content_renderer_client.cc', |
234 'renderer/cast_content_renderer_client.h', | 237 'renderer/cast_content_renderer_client.h', |
235 'renderer/cast_media_load_deferrer.cc', | 238 'renderer/cast_media_load_deferrer.cc', |
236 'renderer/cast_media_load_deferrer.h', | 239 'renderer/cast_media_load_deferrer.h', |
237 'renderer/cast_render_process_observer.cc', | 240 'renderer/cast_render_process_observer.cc', |
238 'renderer/cast_render_process_observer.h', | 241 'renderer/cast_render_process_observer.h', |
239 'renderer/key_systems_cast.cc', | 242 'renderer/key_systems_cast.cc', |
240 'renderer/key_systems_cast.h', | 243 'renderer/key_systems_cast.h', |
| 244 'renderer/media/capabilities_message_filter.cc', |
| 245 'renderer/media/capabilities_message_filter.h', |
241 ], | 246 ], |
242 'conditions': [ | 247 'conditions': [ |
243 ['chromecast_branding=="Chrome"', { | 248 ['chromecast_branding=="Chrome"', { |
244 'dependencies': [ | 249 'dependencies': [ |
245 '<(cast_internal_gyp):cast_shell_internal', | 250 '<(cast_internal_gyp):cast_shell_internal', |
246 ], | 251 ], |
247 }, { | 252 }, { |
248 'sources': [ | 253 'sources': [ |
249 'browser/cast_content_browser_client_simple.cc', | 254 'browser/cast_content_browser_client_simple.cc', |
250 'browser/cast_network_delegate_simple.cc', | 255 'browser/cast_network_delegate_simple.cc', |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 549 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
545 # Allow the cast shell to find the NSS module in the same directory. | 550 # Allow the cast shell to find the NSS module in the same directory. |
546 'ldflags': [ | 551 'ldflags': [ |
547 '-Wl,-rpath=\$$ORIGIN' | 552 '-Wl,-rpath=\$$ORIGIN' |
548 ], | 553 ], |
549 }, | 554 }, |
550 ], # end of targets | 555 ], # end of targets |
551 }], | 556 }], |
552 ], # end of conditions | 557 ], # end of conditions |
553 } | 558 } |
OLD | NEW |