| 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/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "//chrome/common:metrics_constants_util_win", | 139 "//chrome/common:metrics_constants_util_win", |
| 140 "//chrome/install_static:install_static_util", | 140 "//chrome/install_static:install_static_util", |
| 141 "//chrome/installer/util:with_no_strings", | 141 "//chrome/installer/util:with_no_strings", |
| 142 "//chrome_elf", | 142 "//chrome_elf", |
| 143 "//components/browser_watcher:browser_watcher_client", | 143 "//components/browser_watcher:browser_watcher_client", |
| 144 "//components/crash/content/app", | 144 "//components/crash/content/app", |
| 145 "//components/crash/core/common", | 145 "//components/crash/core/common", |
| 146 "//components/flags_ui:switches", | 146 "//components/flags_ui:switches", |
| 147 "//components/startup_metric_utils/common", | 147 "//components/startup_metric_utils/common", |
| 148 "//content:sandbox_helper_win", | 148 "//content:sandbox_helper_win", |
| 149 "//content/public/common:crash_keys", |
| 149 "//content/public/common:static_switches", | 150 "//content/public/common:static_switches", |
| 150 "//crypto", | 151 "//crypto", |
| 152 "//media/base:crash_keys", |
| 151 "//sandbox", | 153 "//sandbox", |
| 152 "//ui/gfx", | 154 "//ui/gfx", |
| 153 ] | 155 ] |
| 154 data_deps = [ | 156 data_deps = [ |
| 155 "//chrome/app/version_assembly:version_assembly_manifest", | 157 "//chrome/app/version_assembly:version_assembly_manifest", |
| 156 ] | 158 ] |
| 157 | 159 |
| 158 if (win_console_app) { | 160 if (win_console_app) { |
| 159 defines += [ "WIN_CONSOLE_APP" ] | 161 defines += [ "WIN_CONSOLE_APP" ] |
| 160 } else { | 162 } else { |
| (...skipping 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1774 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1776 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1775 "//chrome/tools/build/linux/chrome-wrapper", | 1777 "//chrome/tools/build/linux/chrome-wrapper", |
| 1776 "//third_party/xdg-utils/scripts/xdg-mime", | 1778 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1777 "//third_party/xdg-utils/scripts/xdg-settings", | 1779 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1778 ] | 1780 ] |
| 1779 outputs = [ | 1781 outputs = [ |
| 1780 "$root_out_dir/{{source_file_part}}", | 1782 "$root_out_dir/{{source_file_part}}", |
| 1781 ] | 1783 ] |
| 1782 } | 1784 } |
| 1783 } | 1785 } |
| OLD | NEW |