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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 deps += [ | 221 deps += [ |
222 # On Linux, link the dependencies (libraries) that make up actual | 222 # On Linux, link the dependencies (libraries) that make up actual |
223 # Chromium functionality directly into the executable. | 223 # Chromium functionality directly into the executable. |
224 ":browser_dependencies", | 224 ":browser_dependencies", |
225 ":child_dependencies", | 225 ":child_dependencies", |
226 ":manpage", | 226 ":manpage", |
227 | 227 |
228 # Needed to use the master_preferences functions | 228 # Needed to use the master_preferences functions |
229 "//chrome/installer/util:with_no_strings", | 229 "//chrome/installer/util:with_no_strings", |
230 "//content/public/app:both", | 230 "//content/public/app:both", |
| 231 |
| 232 # For headless mode. |
| 233 "//headless:headless_shell_lib", |
231 ] | 234 ] |
232 if (enable_plugins && enable_pdf) { | 235 if (enable_plugins && enable_pdf) { |
233 deps += [ "//pdf" ] | 236 deps += [ "//pdf" ] |
234 } | 237 } |
235 | 238 |
236 public_deps = [ | 239 public_deps = [ |
237 ":xdg_mime", # Needs to be public for installer to consume files. | 240 ":xdg_mime", # Needs to be public for installer to consume files. |
238 "//chrome/common:features", | 241 "//chrome/common:features", |
239 ] | 242 ] |
240 | 243 |
(...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1614 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1612 "//chrome/tools/build/linux/chrome-wrapper", | 1615 "//chrome/tools/build/linux/chrome-wrapper", |
1613 "//third_party/xdg-utils/scripts/xdg-mime", | 1616 "//third_party/xdg-utils/scripts/xdg-mime", |
1614 "//third_party/xdg-utils/scripts/xdg-settings", | 1617 "//third_party/xdg-utils/scripts/xdg-settings", |
1615 ] | 1618 ] |
1616 outputs = [ | 1619 outputs = [ |
1617 "$root_out_dir/{{source_file_part}}", | 1620 "$root_out_dir/{{source_file_part}}", |
1618 ] | 1621 ] |
1619 } | 1622 } |
1620 } | 1623 } |
OLD | NEW |