Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: chrome/BUILD.gn

Issue 2270243002: Unbundle Flash on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Through #11 Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/common/chrome_content_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
250 } 250 }
251 } 251 }
252 252
253 # These files are used by the installer so we need a public dep. 253 # These files are used by the installer so we need a public dep.
254 public_deps += [ 254 public_deps += [
255 ":packed_extra_resources", 255 ":packed_extra_resources",
256 ":packed_resources", 256 ":packed_resources",
257 ] 257 ]
258 deps += [ "//components/startup_metric_utils/browser:lib" ] 258 deps += [ "//components/startup_metric_utils/browser:lib" ]
259 259
260 # Precompiled plugins that need to get copied to the output directory. 260 # Only ChromeOS has precompiled Flash that needs to get copied to the output
261 # On Mac, internal plugins go inside the framework, so these 261 # directory. On other platforms, Flash is either component-updated only or
262 # dependencies are on chrome.dll. On Windows, these are not bundled. 262 # not supported at all.
263 if (!is_win) { 263 if (is_chromeos) {
264 deps += [ "//third_party/adobe/flash:flapper_binaries" ] 264 deps += [ "//third_party/adobe/flash:flapper_binaries" ]
265 } 265 }
266 266
267 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] 267 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ]
268 268
269 if (is_multi_dll_chrome) { 269 if (is_multi_dll_chrome) {
270 defines += [ "CHROME_MULTIPLE_DLL" ] 270 defines += [ "CHROME_MULTIPLE_DLL" ]
271 data_deps += [ ":chrome_child" ] 271 data_deps += [ ":chrome_child" ]
272 } 272 }
273 } 273 }
(...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1758 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1759 "//chrome/tools/build/linux/chrome-wrapper", 1759 "//chrome/tools/build/linux/chrome-wrapper",
1760 "//third_party/xdg-utils/scripts/xdg-mime", 1760 "//third_party/xdg-utils/scripts/xdg-mime",
1761 "//third_party/xdg-utils/scripts/xdg-settings", 1761 "//third_party/xdg-utils/scripts/xdg-settings",
1762 ] 1762 ]
1763 outputs = [ 1763 outputs = [
1764 "$root_out_dir/{{source_file_part}}", 1764 "$root_out_dir/{{source_file_part}}",
1765 ] 1765 ]
1766 } 1766 }
1767 } 1767 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/chrome_content_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698