Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: third_party/widevine/cdm/widevine_cdm.gyp

Issue 2023383003: media: Fix widevine_cdm_manifest target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698