| 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/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 deps += [ "//chrome/app/mash" ] | 251 deps += [ "//chrome/app/mash" ] |
| 252 data_deps += [ "//chrome/app:mojo_manifests" ] | 252 data_deps += [ "//chrome/app:mojo_manifests" ] |
| 253 } | 253 } |
| 254 } | 254 } |
| 255 | 255 |
| 256 # These files are used by the installer so we need a public dep. | 256 # These files are used by the installer so we need a public dep. |
| 257 public_deps += [ | 257 public_deps += [ |
| 258 ":packed_extra_resources", | 258 ":packed_extra_resources", |
| 259 ":packed_resources", | 259 ":packed_resources", |
| 260 ] | 260 ] |
| 261 deps += [ "//components/startup_metric_utils/browser:lib" ] | |
| 262 | 261 |
| 263 # Only ChromeOS has precompiled Flash that needs to get copied to the output | 262 # Only ChromeOS has precompiled Flash that needs to get copied to the output |
| 264 # directory. On other platforms, Flash is either component-updated only or | 263 # directory. On other platforms, Flash is either component-updated only or |
| 265 # not supported at all. | 264 # not supported at all. |
| 266 if (is_chromeos) { | 265 if (is_chromeos) { |
| 267 deps += [ "//third_party/adobe/flash:flapper_binaries" ] | 266 deps += [ "//third_party/adobe/flash:flapper_binaries" ] |
| 268 } | 267 } |
| 269 | 268 |
| 270 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] | 269 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] |
| 271 | 270 |
| (...skipping 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1784 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1783 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1785 "//chrome/tools/build/linux/chrome-wrapper", | 1784 "//chrome/tools/build/linux/chrome-wrapper", |
| 1786 "//third_party/xdg-utils/scripts/xdg-mime", | 1785 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1787 "//third_party/xdg-utils/scripts/xdg-settings", | 1786 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1788 ] | 1787 ] |
| 1789 outputs = [ | 1788 outputs = [ |
| 1790 "$root_out_dir/{{source_file_part}}", | 1789 "$root_out_dir/{{source_file_part}}", |
| 1791 ] | 1790 ] |
| 1792 } | 1791 } |
| 1793 } | 1792 } |
| OLD | NEW |