OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Allow widevinecdmadapter to be built in Chromium. | 7 # Allow widevinecdmadapter to be built in Chromium. |
8 'variables': { | 8 'variables': { |
9 'enable_widevine%': 0, | 9 'enable_widevine%': 0, |
10 }, | 10 }, |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'copies': [{ | 163 'copies': [{ |
164 'destination': '<(SHARED_INTERMEDIATE_DIR)', | 164 'destination': '<(SHARED_INTERMEDIATE_DIR)', |
165 'files': [ '<(widevine_cdm_version_h_file)' ], | 165 'files': [ '<(widevine_cdm_version_h_file)' ], |
166 }], | 166 }], |
167 }, | 167 }, |
168 { | 168 { |
169 # GN version: //third_party/widevine/cdm:widevine_cdm_manifest | 169 # GN version: //third_party/widevine/cdm:widevine_cdm_manifest |
170 'target_name': 'widevine_cdm_manifest', | 170 'target_name': 'widevine_cdm_manifest', |
171 'type': 'none', | 171 'type': 'none', |
172 'conditions': [ | 172 'conditions': [ |
173 [ 'branding == "Chrome"', { | 173 [ 'widevine_cdm_manifest_file != []', { |
174 'copies': [{ | 174 'copies': [{ |
175 'destination': '<(PRODUCT_DIR)/WidevineCdm', | 175 'destination': '<(PRODUCT_DIR)/WidevineCdm', |
176 'files': [ '<(widevine_cdm_manifest_file)' ], | 176 'files': [ '<(widevine_cdm_manifest_file)' ], |
177 }], | 177 }], |
178 }], | 178 }], |
179 ], | 179 ], |
180 }, | 180 }, |
181 { | 181 { |
182 # GN version: //third_party/widevine/cdm:widevinecdm | 182 # GN version: //third_party/widevine/cdm:widevinecdm |
183 'target_name': 'widevinecdm', | 183 'target_name': 'widevinecdm', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 'conditions': [ | 233 'conditions': [ |
234 [ 'branding == "Chrome" and OS == "linux"', { | 234 [ 'branding == "Chrome" and OS == "linux"', { |
235 'dependencies': [ | 235 'dependencies': [ |
236 '<(DEPTH)/third_party/widevine/test/license_server/license_server.gy
p:test_license_server', | 236 '<(DEPTH)/third_party/widevine/test/license_server/license_server.gy
p:test_license_server', |
237 ], | 237 ], |
238 }], | 238 }], |
239 ], | 239 ], |
240 }, | 240 }, |
241 ], | 241 ], |
242 } | 242 } |
OLD | NEW |