| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/locales.gni") | 8 import("//build/config/locales.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 ] | 975 ] |
| 976 | 976 |
| 977 deps = [ | 977 deps = [ |
| 978 "//chrome/browser", | 978 "//chrome/browser", |
| 979 "//chrome/browser/ui", | 979 "//chrome/browser/ui", |
| 980 "//chrome/child", | 980 "//chrome/child", |
| 981 "//chrome/common", | 981 "//chrome/common", |
| 982 "//chrome/plugin", | 982 "//chrome/plugin", |
| 983 "//chrome/renderer", | 983 "//chrome/renderer", |
| 984 "//chrome/utility", | 984 "//chrome/utility", |
| 985 "//components/safe_browsing_db:safe_browsing_db_mobile", |
| 985 "//content/public/app:both", | 986 "//content/public/app:both", |
| 986 ] | 987 ] |
| 987 } | 988 } |
| 988 } | 989 } |
| 989 | 990 |
| 990 if (is_linux) { | 991 if (is_linux) { |
| 991 action("manpage") { | 992 action("manpage") { |
| 992 if (is_chrome_branded) { | 993 if (is_chrome_branded) { |
| 993 name = "Google Chrome" | 994 name = "Google Chrome" |
| 994 filename = "google-chrome" | 995 filename = "google-chrome" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1064 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1064 "//chrome/tools/build/linux/chrome-wrapper", | 1065 "//chrome/tools/build/linux/chrome-wrapper", |
| 1065 "//third_party/xdg-utils/scripts/xdg-mime", | 1066 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1066 "//third_party/xdg-utils/scripts/xdg-settings", | 1067 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1067 ] | 1068 ] |
| 1068 outputs = [ | 1069 outputs = [ |
| 1069 "$root_out_dir/{{source_file_part}}", | 1070 "$root_out_dir/{{source_file_part}}", |
| 1070 ] | 1071 ] |
| 1071 } | 1072 } |
| 1072 } | 1073 } |
| OLD | NEW |