| 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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 ] | 972 ] |
| 973 | 973 |
| 974 deps = [ | 974 deps = [ |
| 975 ":browser_dependencies", | 975 ":browser_dependencies", |
| 976 ":child_dependencies", | 976 ":child_dependencies", |
| 977 "//chrome/app:command_ids", | 977 "//chrome/app:command_ids", |
| 978 "//chrome/common:features", | 978 "//chrome/common:features", |
| 979 "//components/crash/content/app", | 979 "//components/crash/content/app", |
| 980 "//components/policy:generated", | 980 "//components/policy:generated", |
| 981 "//content/public/app:both", | 981 "//content/public/app:both", |
| 982 "//headless:headless_shell_lib", |
| 982 "//pdf", | 983 "//pdf", |
| 983 "//third_party/cld", | 984 "//third_party/cld", |
| 984 ] | 985 ] |
| 985 | 986 |
| 986 if (is_component_build) { | 987 if (is_component_build) { |
| 987 libs = [ "Carbon.framework" ] | 988 libs = [ "Carbon.framework" ] |
| 988 } | 989 } |
| 989 | 990 |
| 990 ldflags = [ | 991 ldflags = [ |
| 991 "-Wl,-order_file", | 992 "-Wl,-order_file", |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1616 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1617 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1617 "//chrome/tools/build/linux/chrome-wrapper", | 1618 "//chrome/tools/build/linux/chrome-wrapper", |
| 1618 "//third_party/xdg-utils/scripts/xdg-mime", | 1619 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1619 "//third_party/xdg-utils/scripts/xdg-settings", | 1620 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1620 ] | 1621 ] |
| 1621 outputs = [ | 1622 outputs = [ |
| 1622 "$root_out_dir/{{source_file_part}}", | 1623 "$root_out_dir/{{source_file_part}}", |
| 1623 ] | 1624 ] |
| 1624 } | 1625 } |
| 1625 } | 1626 } |
| OLD | NEW |