| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ":file_pre_reader", | 128 ":file_pre_reader", |
| 129 | 129 |
| 130 # 'chrome_nacl_win64" TODO(GYP) bug 512869 | 130 # 'chrome_nacl_win64" TODO(GYP) bug 512869 |
| 131 "//base", | 131 "//base", |
| 132 "//breakpad:breakpad_handler", | 132 "//breakpad:breakpad_handler", |
| 133 "//breakpad:breakpad_sender", | 133 "//breakpad:breakpad_sender", |
| 134 "//chrome/app/version_assembly:chrome_exe_manifest", | 134 "//chrome/app/version_assembly:chrome_exe_manifest", |
| 135 "//chrome/browser:chrome_process_finder", | 135 "//chrome/browser:chrome_process_finder", |
| 136 "//chrome/chrome_watcher", | 136 "//chrome/chrome_watcher", |
| 137 "//chrome/chrome_watcher:client", | 137 "//chrome/chrome_watcher:client", |
| 138 "//chrome/installer/util:with_no_strings_some_things_wont_work", | 138 "//chrome/installer/util:with_no_strings", |
| 139 "//chrome_elf", | 139 "//chrome_elf", |
| 140 "//components/browser_watcher:browser_watcher_client", | 140 "//components/browser_watcher:browser_watcher_client", |
| 141 "//components/crash/content/app", | 141 "//components/crash/content/app", |
| 142 "//components/crash/core/common", | 142 "//components/crash/core/common", |
| 143 "//components/flags_ui:switches", | 143 "//components/flags_ui:switches", |
| 144 "//content:sandbox_helper_win", | 144 "//content:sandbox_helper_win", |
| 145 "//content/public/common:static_switches", | 145 "//content/public/common:static_switches", |
| 146 "//crypto", | 146 "//crypto", |
| 147 "//sandbox", | 147 "//sandbox", |
| 148 "//third_party/crashpad/crashpad/handler:handler_lib", | 148 "//third_party/crashpad/crashpad/handler:handler_lib", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 deps += [ | 182 deps += [ |
| 183 # On Linux, link the dependencies (libraries) that make up actual | 183 # On Linux, link the dependencies (libraries) that make up actual |
| 184 # Chromium functionality directly into the executable. | 184 # Chromium functionality directly into the executable. |
| 185 ":browser_dependencies", | 185 ":browser_dependencies", |
| 186 ":child_dependencies", | 186 ":child_dependencies", |
| 187 ":manpage", | 187 ":manpage", |
| 188 "//base/allocator", | 188 "//base/allocator", |
| 189 | 189 |
| 190 # Needed to use the master_preferences functions | 190 # Needed to use the master_preferences functions |
| 191 "//chrome/installer/util", | 191 "//chrome/installer/util:with_no_strings", |
| 192 "//content/public/app:both", | 192 "//content/public/app:both", |
| 193 ] | 193 ] |
| 194 if (enable_plugins && enable_pdf) { | 194 if (enable_plugins && enable_pdf) { |
| 195 deps += [ "//pdf" ] | 195 deps += [ "//pdf" ] |
| 196 } | 196 } |
| 197 | 197 |
| 198 public_deps = [ | 198 public_deps = [ |
| 199 ":xdg_mime", # Needs to be public for installer to consume files. | 199 ":xdg_mime", # Needs to be public for installer to consume files. |
| 200 ] | 200 ] |
| 201 | 201 |
| (...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1069 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1070 "//chrome/tools/build/linux/chrome-wrapper", | 1070 "//chrome/tools/build/linux/chrome-wrapper", |
| 1071 "//third_party/xdg-utils/scripts/xdg-mime", | 1071 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1072 "//third_party/xdg-utils/scripts/xdg-settings", | 1072 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1073 ] | 1073 ] |
| 1074 outputs = [ | 1074 outputs = [ |
| 1075 "$root_out_dir/{{source_file_part}}", | 1075 "$root_out_dir/{{source_file_part}}", |
| 1076 ] | 1076 ] |
| 1077 } | 1077 } |
| 1078 } | 1078 } |
| OLD | NEW |