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

Side by Side Diff: chrome/installer/linux/BUILD.gn

Issue 1957643002: media: Move widevine CDM targets to WidevineCdm folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: @loader_path/. Created 4 years, 7 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/util/version.gni") 8 import("//build/util/version.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 213
214 "$root_out_dir/nacl_helper", 214 "$root_out_dir/nacl_helper",
215 "$root_out_dir/nacl_helper_bootstrap", 215 "$root_out_dir/nacl_helper_bootstrap",
216 "$root_out_dir/PepperFlash/libpepflashplayer.so", 216 "$root_out_dir/PepperFlash/libpepflashplayer.so",
217 "$root_out_dir/PepperFlash/manifest.json", 217 "$root_out_dir/PepperFlash/manifest.json",
218 ] 218 ]
219 219
220 if (current_cpu == "x86") { 220 if (current_cpu == "x86") {
221 packaging_files_binaries += [ 221 packaging_files_binaries += [
222 "$root_out_dir/nacl_irt_x86_32.nexe", 222 "$root_out_dir/nacl_irt_x86_32.nexe",
223 "$root_out_dir/libwidevinecdmadapter.so", 223 "$root_out_dir/WidevineCdm/libwidevinecdmadapter.so",
224 "$root_out_dir/libwidevinecdm.so", 224 "$root_out_dir/WidevineCdm/libwidevinecdm.so",
225 ] 225 ]
226 } else if (current_cpu == "x64") { 226 } else if (current_cpu == "x64") {
227 packaging_files_binaries += [ 227 packaging_files_binaries += [
228 "$root_out_dir/nacl_irt_x86_64.nexe", 228 "$root_out_dir/nacl_irt_x86_64.nexe",
229 "$root_out_dir/libwidevinecdmadapter.so", 229 "$root_out_dir/WidevineCdm/libwidevinecdmadapter.so",
230 "$root_out_dir/libwidevinecdm.so", 230 "$root_out_dir/WidevineCdm/libwidevinecdm.so",
231 ] 231 ]
232 } else if (current_cpu == "arm") { 232 } else if (current_cpu == "arm") {
233 packaging_files_binaries += [ "$root_out_dir/nacl_irt_arm.nexe" ] 233 packaging_files_binaries += [ "$root_out_dir/nacl_irt_arm.nexe" ]
234 } 234 }
235 if (is_asan) { 235 if (is_asan) {
236 packaging_files_binaries += [ "$root_out_dir/lib/libc++.so" ] 236 packaging_files_binaries += [ "$root_out_dir/lib/libc++.so" ]
237 } 237 }
238 238
239 deb_target_name = "${target_name}_deb" 239 deb_target_name = "${target_name}_deb"
240 action(deb_target_name) { 240 action(deb_target_name) {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 # Other packages that we support that aren't included in the default "linux" 340 # Other packages that we support that aren't included in the default "linux"
341 # target. 341 # target.
342 linux_package("trunk") { 342 linux_package("trunk") {
343 channel = "trunk" 343 channel = "trunk"
344 } 344 }
345 if (is_asan) { 345 if (is_asan) {
346 linux_package("asan") { 346 linux_package("asan") {
347 channel = "asan" 347 channel = "asan"
348 } 348 }
349 } 349 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698