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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
250 deps += [ "//chrome/app/mash" ] | 250 deps += [ "//chrome/app/mash" ] |
251 data_deps += [ "//chrome/app:mojo_manifests" ] | 251 data_deps += [ "//chrome/app:mojo_manifests" ] |
252 } | 252 } |
253 } | 253 } |
254 | 254 |
255 # These files are used by the installer so we need a public dep. | 255 # These files are used by the installer so we need a public dep. |
256 public_deps += [ | 256 public_deps += [ |
257 ":packed_extra_resources", | 257 ":packed_extra_resources", |
258 ":packed_resources", | 258 ":packed_resources", |
259 ] | 259 ] |
260 deps += [ | 260 deps += [ "//components/startup_metric_utils/browser:lib" ] |
261 "//components/startup_metric_utils/browser:lib", | |
262 | 261 |
263 # Precompiled plugins that need to get copied to the output directory. | 262 # Precompiled plugins that need to get copied to the output directory. |
264 # On Mac, internal plugins go inside the framework, so these | 263 # On Mac, internal plugins go inside the framework, so these |
265 # dependencies are on chrome.dll. | 264 # dependencies are on chrome.dll. On Windows, these are not bundled. |
Nico
2016/08/23 17:19:47
Aren't they not bundled now on Mac as well?
| |
266 "//third_party/adobe/flash:flapper_binaries", | 265 if (!is_win) { |
267 ] | 266 deps += [ "//third_party/adobe/flash:flapper_binaries" ] |
267 } | |
268 | 268 |
269 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] | 269 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] |
270 | 270 |
271 if (is_multi_dll_chrome) { | 271 if (is_multi_dll_chrome) { |
272 defines += [ "CHROME_MULTIPLE_DLL" ] | 272 defines += [ "CHROME_MULTIPLE_DLL" ] |
273 data_deps += [ ":chrome_child" ] | 273 data_deps += [ ":chrome_child" ] |
274 } | 274 } |
275 } | 275 } |
276 } # !is_android && !is_mac | 276 } # !is_android && !is_mac |
277 | 277 |
(...skipping 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1768 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1768 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1769 "//chrome/tools/build/linux/chrome-wrapper", | 1769 "//chrome/tools/build/linux/chrome-wrapper", |
1770 "//third_party/xdg-utils/scripts/xdg-mime", | 1770 "//third_party/xdg-utils/scripts/xdg-mime", |
1771 "//third_party/xdg-utils/scripts/xdg-settings", | 1771 "//third_party/xdg-utils/scripts/xdg-settings", |
1772 ] | 1772 ] |
1773 outputs = [ | 1773 outputs = [ |
1774 "$root_out_dir/{{source_file_part}}", | 1774 "$root_out_dir/{{source_file_part}}", |
1775 ] | 1775 ] |
1776 } | 1776 } |
1777 } | 1777 } |
OLD | NEW |