| OLD | NEW |
| 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("//build/util/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") |
| 11 import("//third_party/widevine/cdm/widevine.gni") | 11 import("//third_party/widevine/cdm/widevine.gni") |
| 12 | 12 |
| 13 widevine_arch = current_cpu | 13 widevine_arch = current_cpu |
| 14 if (widevine_arch == "x86") { | 14 if (widevine_arch == "x86") { |
| 15 widevine_arch = "ia32" | 15 widevine_arch = "ia32" |
| 16 } | 16 } |
| 17 | 17 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "../scripts/signer.py", | 204 "../scripts/signer.py", |
| 205 ] | 205 ] |
| 206 outputs = [ | 206 outputs = [ |
| 207 "$root_out_dir/installer/widevine/{{source_file_part}}", | 207 "$root_out_dir/installer/widevine/{{source_file_part}}", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| 210 } else { | 210 } else { |
| 211 group("widevine_signature_scripts") { | 211 group("widevine_signature_scripts") { |
| 212 } | 212 } |
| 213 } | 213 } |
| OLD | NEW |