| 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/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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 deps = [ | 1013 deps = [ |
| 1014 ":browser_dependencies", | 1014 ":browser_dependencies", |
| 1015 ":child_dependencies", | 1015 ":child_dependencies", |
| 1016 "//chrome/app:command_ids", | 1016 "//chrome/app:command_ids", |
| 1017 "//chrome/common:features", | 1017 "//chrome/common:features", |
| 1018 "//components/crash/content/app", | 1018 "//components/crash/content/app", |
| 1019 "//components/policy:generated", | 1019 "//components/policy:generated", |
| 1020 "//content/public/app:both", | 1020 "//content/public/app:both", |
| 1021 "//pdf", | 1021 "//pdf", |
| 1022 "//third_party/cld", | 1022 "//third_party/cld", |
| 1023 |
| 1024 # For headless mode. |
| 1025 "//headless:headless_shell_lib", |
| 1023 ] | 1026 ] |
| 1024 | 1027 |
| 1025 if (is_component_build) { | 1028 if (is_component_build) { |
| 1026 libs = [ "Carbon.framework" ] | 1029 libs = [ "Carbon.framework" ] |
| 1027 } | 1030 } |
| 1028 | 1031 |
| 1029 ldflags = [ | 1032 ldflags = [ |
| 1030 "-Wl,-order_file", | 1033 "-Wl,-order_file", |
| 1031 "-Wl," + rebase_path("app/framework.order", root_build_dir), | 1034 "-Wl," + rebase_path("app/framework.order", root_build_dir), |
| 1032 "-ObjC", | 1035 "-ObjC", |
| (...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1655 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1658 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1656 "//chrome/tools/build/linux/chrome-wrapper", | 1659 "//chrome/tools/build/linux/chrome-wrapper", |
| 1657 "//third_party/xdg-utils/scripts/xdg-mime", | 1660 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1658 "//third_party/xdg-utils/scripts/xdg-settings", | 1661 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1659 ] | 1662 ] |
| 1660 outputs = [ | 1663 outputs = [ |
| 1661 "$root_out_dir/{{source_file_part}}", | 1664 "$root_out_dir/{{source_file_part}}", |
| 1662 ] | 1665 ] |
| 1663 } | 1666 } |
| 1664 } | 1667 } |
| OLD | NEW |