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

Side by Side Diff: chrome/BUILD.gn

Issue 1991953002: Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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",
242 ] 245 ]
243 if (enable_plugins && enable_pdf) { 246 if (enable_plugins && enable_pdf) {
244 deps += [ "//pdf" ] 247 deps += [ "//pdf" ]
245 } 248 }
246 249
247 public_deps = [ 250 public_deps = [
248 ":xdg_mime", # Needs to be public for installer to consume files. 251 ":xdg_mime", # Needs to be public for installer to consume files.
249 "//chrome/common:features", 252 "//chrome/common:features",
250 ] 253 ]
251 254
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1601 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1604 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1602 "//chrome/tools/build/linux/chrome-wrapper", 1605 "//chrome/tools/build/linux/chrome-wrapper",
1603 "//third_party/xdg-utils/scripts/xdg-mime", 1606 "//third_party/xdg-utils/scripts/xdg-mime",
1604 "//third_party/xdg-utils/scripts/xdg-settings", 1607 "//third_party/xdg-utils/scripts/xdg-settings",
1605 ] 1608 ]
1606 outputs = [ 1609 outputs = [
1607 "$root_out_dir/{{source_file_part}}", 1610 "$root_out_dir/{{source_file_part}}",
1608 ] 1611 ]
1609 } 1612 }
1610 } 1613 }
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