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

Side by Side Diff: chrome/BUILD.gn

Issue 2570873002: Revert of Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years 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/app/DEPS » ('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/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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 deps += [ 232 deps += [
233 # On Linux, link the dependencies (libraries) that make up actual 233 # On Linux, link the dependencies (libraries) that make up actual
234 # Chromium functionality directly into the executable. 234 # Chromium functionality directly into the executable.
235 ":browser_dependencies", 235 ":browser_dependencies",
236 ":child_dependencies", 236 ":child_dependencies",
237 ":manpage", 237 ":manpage",
238 238
239 # Needed to use the master_preferences functions 239 # Needed to use the master_preferences functions
240 "//chrome/installer/util:with_no_strings", 240 "//chrome/installer/util:with_no_strings",
241 "//content/public/app:both", 241 "//content/public/app:both",
242
243 # For headless mode.
244 "//headless:headless_shell_lib",
245 ] 242 ]
246 if (enable_plugins && enable_pdf) { 243 if (enable_plugins && enable_pdf) {
247 deps += [ "//pdf" ] 244 deps += [ "//pdf" ]
248 } 245 }
249 246
250 public_deps = [ 247 public_deps = [
251 ":xdg_mime", # Needs to be public for installer to consume files. 248 ":xdg_mime", # Needs to be public for installer to consume files.
252 "//chrome/common:features", 249 "//chrome/common:features",
253 ] 250 ]
254 251
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1604 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1601 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1605 "//chrome/tools/build/linux/chrome-wrapper", 1602 "//chrome/tools/build/linux/chrome-wrapper",
1606 "//third_party/xdg-utils/scripts/xdg-mime", 1603 "//third_party/xdg-utils/scripts/xdg-mime",
1607 "//third_party/xdg-utils/scripts/xdg-settings", 1604 "//third_party/xdg-utils/scripts/xdg-settings",
1608 ] 1605 ]
1609 outputs = [ 1606 outputs = [
1610 "$root_out_dir/{{source_file_part}}", 1607 "$root_out_dir/{{source_file_part}}",
1611 ] 1608 ]
1612 } 1609 }
1613 } 1610 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698