| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") | 
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") | 
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") | 
| 8 import("//build/config/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") | 
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") | 
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.gni") | 
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 266         data_deps += [ "//chrome/app:service_manifests" ] | 266         data_deps += [ "//chrome/app:service_manifests" ] | 
| 267       } | 267       } | 
| 268     } | 268     } | 
| 269 | 269 | 
| 270     # These files are used by the installer so we need a public dep. | 270     # These files are used by the installer so we need a public dep. | 
| 271     public_deps += [ ":packed_resources" ] | 271     public_deps += [ ":packed_resources" ] | 
| 272 | 272 | 
| 273     # Only ChromeOS has precompiled Flash that needs to get copied to the output | 273     # Only ChromeOS has precompiled Flash that needs to get copied to the output | 
| 274     # directory. On other platforms, Flash is either component-updated only or | 274     # directory. On other platforms, Flash is either component-updated only or | 
| 275     # not supported at all. | 275     # not supported at all. | 
| 276     # As well, the scripts to sign files for Widevine need to be copied to the |  | 
| 277     # output directory so that the scripts can be run on the executables after |  | 
| 278     # stripping. |  | 
| 279     if (is_chromeos) { | 276     if (is_chromeos) { | 
| 280       deps += [ "//third_party/adobe/flash:flapper_binaries" ] | 277       deps += [ "//third_party/adobe/flash:flapper_binaries" ] | 
| 281       data_deps += [ "//third_party/widevine/cdm:widevine_signature_scripts" ] |  | 
| 282     } | 278     } | 
| 283 | 279 | 
| 284     data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] | 280     data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] | 
| 285 | 281 | 
| 286     if (is_multi_dll_chrome) { | 282     if (is_multi_dll_chrome) { | 
| 287       defines += [ "CHROME_MULTIPLE_DLL" ] | 283       defines += [ "CHROME_MULTIPLE_DLL" ] | 
| 288       data_deps += [ ":chrome_child" ] | 284       data_deps += [ ":chrome_child" ] | 
| 289     } | 285     } | 
| 290   } | 286   } | 
| 291 }  # !is_android && !is_mac | 287 }  # !is_android && !is_mac | 
| (...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1662       "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1658       "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 
| 1663       "//chrome/tools/build/linux/chrome-wrapper", | 1659       "//chrome/tools/build/linux/chrome-wrapper", | 
| 1664       "//third_party/xdg-utils/scripts/xdg-mime", | 1660       "//third_party/xdg-utils/scripts/xdg-mime", | 
| 1665       "//third_party/xdg-utils/scripts/xdg-settings", | 1661       "//third_party/xdg-utils/scripts/xdg-settings", | 
| 1666     ] | 1662     ] | 
| 1667     outputs = [ | 1663     outputs = [ | 
| 1668       "$root_out_dir/{{source_file_part}}", | 1664       "$root_out_dir/{{source_file_part}}", | 
| 1669     ] | 1665     ] | 
| 1670   } | 1666   } | 
| 1671 } | 1667 } | 
| OLD | NEW | 
|---|