OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'conditions': [ | 7 'conditions': [ |
8 ['OS == "android"', { | 8 ['OS == "android"', { |
9 # Android doesn't use ffmpeg. | 9 # Android doesn't use ffmpeg. |
10 'use_ffmpeg%': 0, | 10 'use_ffmpeg%': 0, |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 }], | 69 }], |
70 ['OS == "mac"', { | 70 ['OS == "mac"', { |
71 'xcode_settings': { | 71 'xcode_settings': { |
72 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 72 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
73 }, | 73 }, |
74 }] | 74 }] |
75 ], | 75 ], |
76 'defines': ['CDM_IMPLEMENTATION'], | 76 'defines': ['CDM_IMPLEMENTATION'], |
77 'dependencies': [ | 77 'dependencies': [ |
78 'media', | 78 'media', |
| 79 '../url/url.gyp:url_lib', |
79 # Include the following for media::AudioBus. | 80 # Include the following for media::AudioBus. |
80 'shared_memory_support', | 81 'shared_memory_support', |
81 '<(DEPTH)/base/base.gyp:base', | 82 '<(DEPTH)/base/base.gyp:base', |
82 ], | 83 ], |
83 'sources': [ | 84 'sources': [ |
84 'cdm/ppapi/cdm_file_io_test.cc', | 85 'cdm/ppapi/cdm_file_io_test.cc', |
85 'cdm/ppapi/cdm_file_io_test.h', | 86 'cdm/ppapi/cdm_file_io_test.h', |
86 'cdm/ppapi/external_clear_key/cdm_video_decoder.cc', | 87 'cdm/ppapi/external_clear_key/cdm_video_decoder.cc', |
87 'cdm/ppapi/external_clear_key/cdm_video_decoder.h', | 88 'cdm/ppapi/external_clear_key/cdm_video_decoder.h', |
88 'cdm/ppapi/external_clear_key/clear_key_cdm.cc', | 89 'cdm/ppapi/external_clear_key/clear_key_cdm.cc', |
(...skipping 21 matching lines...) Expand all Loading... |
110 # Built by clearkeycdm. | 111 # Built by clearkeycdm. |
111 '<(PRODUCT_DIR)/libclearkeycdm.so', | 112 '<(PRODUCT_DIR)/libclearkeycdm.so', |
112 ], | 113 ], |
113 }], | 114 }], |
114 ], | 115 ], |
115 }, | 116 }, |
116 ], | 117 ], |
117 }], | 118 }], |
118 ], | 119 ], |
119 } | 120 } |
OLD | NEW |