| 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 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 | 978 |
| 979 deps = [ | 979 deps = [ |
| 980 "//chrome/browser", | 980 "//chrome/browser", |
| 981 "//chrome/browser/ui", | 981 "//chrome/browser/ui", |
| 982 "//chrome/child", | 982 "//chrome/child", |
| 983 "//chrome/common", | 983 "//chrome/common", |
| 984 "//chrome/plugin", | 984 "//chrome/plugin", |
| 985 "//chrome/renderer", | 985 "//chrome/renderer", |
| 986 "//chrome/utility", | 986 "//chrome/utility", |
| 987 "//components/enhanced_bookmarks", | 987 "//components/enhanced_bookmarks", |
| 988 "//components/safe_browsing_db:safe_browsing_db_mobile", |
| 988 "//content/public/app:both", | 989 "//content/public/app:both", |
| 989 ] | 990 ] |
| 990 } | 991 } |
| 991 } | 992 } |
| 992 | 993 |
| 993 if (is_linux) { | 994 if (is_linux) { |
| 994 action("manpage") { | 995 action("manpage") { |
| 995 if (is_chrome_branded) { | 996 if (is_chrome_branded) { |
| 996 name = "Google Chrome" | 997 name = "Google Chrome" |
| 997 filename = "google-chrome" | 998 filename = "google-chrome" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1067 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1067 "//chrome/tools/build/linux/chrome-wrapper", | 1068 "//chrome/tools/build/linux/chrome-wrapper", |
| 1068 "//third_party/xdg-utils/scripts/xdg-mime", | 1069 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1069 "//third_party/xdg-utils/scripts/xdg-settings", | 1070 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1070 ] | 1071 ] |
| 1071 outputs = [ | 1072 outputs = [ |
| 1072 "$root_out_dir/{{source_file_part}}", | 1073 "$root_out_dir/{{source_file_part}}", |
| 1073 ] | 1074 ] |
| 1074 } | 1075 } |
| 1075 } | 1076 } |
| OLD | NEW |