| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 ], | 225 ], |
| 226 }, { | 226 }, { |
| 227 'sources': [ | 227 'sources': [ |
| 228 'browser/cast_content_browser_client_simple.cc', | 228 'browser/cast_content_browser_client_simple.cc', |
| 229 'browser/cast_network_delegate_simple.cc', | 229 'browser/cast_network_delegate_simple.cc', |
| 230 'browser/devtools/remote_debugging_server_simple.cc', | 230 'browser/devtools/remote_debugging_server_simple.cc', |
| 231 'browser/media/cast_browser_cdm_factory_simple.cc', | 231 'browser/media/cast_browser_cdm_factory_simple.cc', |
| 232 'browser/metrics/platform_metrics_providers_simple.cc', | 232 'browser/metrics/platform_metrics_providers_simple.cc', |
| 233 'browser/pref_service_helper_simple.cc', | 233 'browser/pref_service_helper_simple.cc', |
| 234 'common/platform_client_auth_simple.cc', | 234 'common/platform_client_auth_simple.cc', |
| 235 'renderer/cast_content_renderer_client_simple.cc', |
| 235 'renderer/key_systems_cast_simple.cc', | 236 'renderer/key_systems_cast_simple.cc', |
| 236 ], | 237 ], |
| 237 'conditions': [ | 238 'conditions': [ |
| 238 ['OS=="android"', { | 239 ['OS=="android"', { |
| 239 'sources': [ | 240 'sources': [ |
| 240 'browser/service/cast_service_android.cc', | 241 'browser/service/cast_service_android.cc', |
| 241 'browser/service/cast_service_android.h', | 242 'browser/service/cast_service_android.h', |
| 242 ], | 243 ], |
| 243 }, { | 244 }, { |
| 244 'sources': [ | 245 'sources': [ |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 524 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
| 524 # Allow the cast shell to find the NSS module in the same directory. | 525 # Allow the cast shell to find the NSS module in the same directory. |
| 525 'ldflags': [ | 526 'ldflags': [ |
| 526 '-Wl,-rpath=\$$ORIGIN' | 527 '-Wl,-rpath=\$$ORIGIN' |
| 527 ], | 528 ], |
| 528 }, | 529 }, |
| 529 ], # end of targets | 530 ], # end of targets |
| 530 }], | 531 }], |
| 531 ], # end of conditions | 532 ], # end of conditions |
| 532 } | 533 } |
| OLD | NEW |