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

Side by Side Diff: third_party/widevine/cdm/BUILD.gn

Issue 2699773003: Add Widevine signature files for Win into the build (Closed)
Patch Set: Created 3 years, 10 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 | « chrome/tools/build/win/FILES.cfg ('k') | 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 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//chrome/process_version_rc_template.gni") 7 import("//chrome/process_version_rc_template.gni")
8 import("//media/cdm/ppapi/cdm_paths.gni") 8 import("//media/cdm/ppapi/cdm_paths.gni")
9 import("//media/cdm/ppapi/ppapi_cdm_adapter.gni") 9 import("//media/cdm/ppapi/ppapi_cdm_adapter.gni")
10 import("//ppapi/features/features.gni") 10 import("//ppapi/features/features.gni")
(...skipping 19 matching lines...) Expand all
30 widevine_cdm_version_h_file = "linux/$widevine_arch/widevine_cdm_version.h" 30 widevine_cdm_version_h_file = "linux/$widevine_arch/widevine_cdm_version.h"
31 widevine_cdm_binary_files = [ 31 widevine_cdm_binary_files = [
32 "linux/$widevine_arch/libwidevinecdm.so", 32 "linux/$widevine_arch/libwidevinecdm.so",
33 "linux/$widevine_arch/libwidevinecdm.so.sig", 33 "linux/$widevine_arch/libwidevinecdm.so.sig",
34 ] 34 ]
35 } else if (is_win) { 35 } else if (is_win) {
36 widevine_cdm_version_h_file = "win/$widevine_arch/widevine_cdm_version.h" 36 widevine_cdm_version_h_file = "win/$widevine_arch/widevine_cdm_version.h"
37 widevine_cdm_binary_files = [ 37 widevine_cdm_binary_files = [
38 "win/$widevine_arch/widevinecdm.dll", 38 "win/$widevine_arch/widevinecdm.dll",
39 "win/$widevine_arch/widevinecdm.dll.lib", 39 "win/$widevine_arch/widevinecdm.dll.lib",
40 "win/$widevine_arch/widevinecdm.dll.sig",
40 ] 41 ]
41 widevine_cdm_manifest_file = [ "win/$widevine_arch/manifest.json" ] 42 widevine_cdm_manifest_file = [ "win/$widevine_arch/manifest.json" ]
42 } else if (is_mac) { 43 } else if (is_mac) {
43 widevine_cdm_version_h_file = "mac/$widevine_arch/widevine_cdm_version.h" 44 widevine_cdm_version_h_file = "mac/$widevine_arch/widevine_cdm_version.h"
44 widevine_cdm_binary_files = [ "mac/$widevine_arch/libwidevinecdm.dylib" ] 45 widevine_cdm_binary_files = [ "mac/$widevine_arch/libwidevinecdm.dylib" ]
45 widevine_cdm_manifest_file = [ "mac/$widevine_arch/manifest.json" ] 46 widevine_cdm_manifest_file = [ "mac/$widevine_arch/manifest.json" ]
46 } else { 47 } else {
47 # Other platforms, use the default one. 48 # Other platforms, use the default one.
48 widevine_cdm_version_h_file = "widevine_cdm_version.h" 49 widevine_cdm_version_h_file = "widevine_cdm_version.h"
49 } 50 }
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "../scripts/signer.py", 204 "../scripts/signer.py",
204 ] 205 ]
205 outputs = [ 206 outputs = [
206 "$root_out_dir/installer/widevine/{{source_file_part}}", 207 "$root_out_dir/installer/widevine/{{source_file_part}}",
207 ] 208 ]
208 } 209 }
209 } else { 210 } else {
210 group("widevine_signature_scripts") { 211 group("widevine_signature_scripts") {
211 } 212 }
212 } 213 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698