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

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

Issue 2647393004: Add Widevine signature files into Mac build (Closed)
Patch Set: Created 3 years, 11 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
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('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 20 matching lines...) Expand all
31 widevine_cdm_binary_files = [ "linux/$widevine_arch/libwidevinecdm.so" ] 31 widevine_cdm_binary_files = [ "linux/$widevine_arch/libwidevinecdm.so" ]
32 } else if (is_win) { 32 } else if (is_win) {
33 widevine_cdm_version_h_file = "win/$widevine_arch/widevine_cdm_version.h" 33 widevine_cdm_version_h_file = "win/$widevine_arch/widevine_cdm_version.h"
34 widevine_cdm_binary_files = [ 34 widevine_cdm_binary_files = [
35 "win/$widevine_arch/widevinecdm.dll", 35 "win/$widevine_arch/widevinecdm.dll",
36 "win/$widevine_arch/widevinecdm.dll.lib", 36 "win/$widevine_arch/widevinecdm.dll.lib",
37 ] 37 ]
38 widevine_cdm_manifest_file = [ "win/$widevine_arch/manifest.json" ] 38 widevine_cdm_manifest_file = [ "win/$widevine_arch/manifest.json" ]
39 } else if (is_mac) { 39 } else if (is_mac) {
40 widevine_cdm_version_h_file = "mac/$widevine_arch/widevine_cdm_version.h" 40 widevine_cdm_version_h_file = "mac/$widevine_arch/widevine_cdm_version.h"
41 widevine_cdm_binary_files = [ "mac/$widevine_arch/libwidevinecdm.dylib" ] 41 widevine_cdm_binary_files = [
42 "mac/$widevine_arch/libwidevinecdm.dylib",
43 "mac/$widevine_arch/libwidevinecdm.dylib.sig",
44 ]
42 widevine_cdm_manifest_file = [ "mac/$widevine_arch/manifest.json" ] 45 widevine_cdm_manifest_file = [ "mac/$widevine_arch/manifest.json" ]
43 } else { 46 } else {
44 # Other platforms, use the default one. 47 # Other platforms, use the default one.
45 widevine_cdm_version_h_file = "widevine_cdm_version.h" 48 widevine_cdm_version_h_file = "widevine_cdm_version.h"
46 } 49 }
47 } else if (enable_widevine) { 50 } else if (enable_widevine) {
48 widevine_cdm_version_h_file = "stub/widevine_cdm_version.h" 51 widevine_cdm_version_h_file = "stub/widevine_cdm_version.h"
49 widevine_cdm_manifest_file = [ "stub/manifest.json" ] 52 widevine_cdm_manifest_file = [ "stub/manifest.json" ]
50 } else { 53 } else {
51 # No branding, use the default one. 54 # No branding, use the default one.
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 # on the license server. 188 # on the license server.
186 source_set("widevine_test_license_server") { 189 source_set("widevine_test_license_server") {
187 if (is_chrome_branded && is_linux) { 190 if (is_chrome_branded && is_linux) {
188 deps = [ 191 deps = [
189 # TODO(jrummell) 192 # TODO(jrummell)
190 # This target should be removed and targets should have data_deps on this target: 193 # This target should be removed and targets should have data_deps on this target:
191 #"//third_party/widevine/test/license_server/license_server.gyp:test_licen se_server" 194 #"//third_party/widevine/test/license_server/license_server.gyp:test_licen se_server"
192 ] 195 ]
193 } 196 }
194 } 197 }
OLDNEW
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698