| Index: media/cdm/ppapi/cdm_paths.gni
|
| diff --git a/media/cdm/ppapi/cdm_paths.gni b/media/cdm/ppapi/cdm_paths.gni
|
| index 52f535e621cc39536b90c0645f0e38091711b1bd..f8f94b7a7856944a1dec3ff32ce93a186571dc40 100644
|
| --- a/media/cdm/ppapi/cdm_paths.gni
|
| +++ b/media/cdm/ppapi/cdm_paths.gni
|
| @@ -23,8 +23,8 @@ if (is_chromeos) {
|
| component_os = "unsupported_platform"
|
| }
|
|
|
| -if (target_cpu == "x86" || target_cpu == "x64" || target_cpu == "arm") {
|
| - component_arch = "$target_cpu"
|
| +if (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm") {
|
| + component_arch = "$current_cpu"
|
| } else {
|
| component_arch = "unsupported_arch"
|
| }
|
| @@ -33,7 +33,7 @@ if (target_cpu == "x86" || target_cpu == "x64" || target_cpu == "arm") {
|
| # components.
|
| # TODO(xhwang): Improve how we enable platform specific path. See
|
| # http://crbug.com/468584
|
| -if ((is_win || is_mac) && (target_cpu == "x86" || target_cpu == "x64")) {
|
| +if ((is_win || is_mac) && (current_cpu == "x86" || current_cpu == "x64")) {
|
| _platform_specific_path =
|
| "_platform_specific/$component_os" + "_" + "$component_arch"
|
|
|
|
|