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