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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "$root_out_dir/chrome_100_percent.pak", | 127 "$root_out_dir/chrome_100_percent.pak", |
128 "$root_out_dir/locales/en-US.pak", | 128 "$root_out_dir/locales/en-US.pak", |
129 "$root_out_dir/locales/fr.pak", | 129 "$root_out_dir/locales/fr.pak", |
130 ] | 130 ] |
131 } | 131 } |
132 | 132 |
133 data_deps = [] | 133 data_deps = [] |
134 | 134 |
135 if (is_win) { | 135 if (is_win) { |
136 sources += [ | 136 sources += [ |
137 "app/chrome_crash_reporter_client_win.cc", | |
138 "app/chrome_crash_reporter_client_win.h", | |
139 "app/chrome_exe.rc", | 137 "app/chrome_exe.rc", |
140 "app/chrome_exe_load_config_win.cc", | 138 "app/chrome_exe_load_config_win.cc", |
141 "app/chrome_exe_main_win.cc", | 139 "app/chrome_exe_main_win.cc", |
142 "app/chrome_watcher_client_win.cc", | 140 "app/chrome_watcher_client_win.cc", |
143 "app/chrome_watcher_client_win.h", | 141 "app/chrome_watcher_client_win.h", |
144 "app/chrome_watcher_command_line_win.cc", | 142 "app/chrome_watcher_command_line_win.cc", |
145 "app/chrome_watcher_command_line_win.h", | 143 "app/chrome_watcher_command_line_win.h", |
146 "app/kasko_client.cc", | 144 "app/kasko_client.cc", |
147 "app/kasko_client.h", | 145 "app/kasko_client.h", |
148 "app/main_dll_loader_win.cc", | 146 "app/main_dll_loader_win.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
163 "//chrome/app/version_assembly:chrome_exe_manifest", | 161 "//chrome/app/version_assembly:chrome_exe_manifest", |
164 "//chrome/browser:chrome_process_finder", | 162 "//chrome/browser:chrome_process_finder", |
165 "//chrome/chrome_watcher", | 163 "//chrome/chrome_watcher", |
166 "//chrome/chrome_watcher:client", | 164 "//chrome/chrome_watcher:client", |
167 "//chrome/common:constants", | 165 "//chrome/common:constants", |
168 "//chrome/common:metrics_constants_util_win", | 166 "//chrome/common:metrics_constants_util_win", |
169 "//chrome/install_static:install_static_util", | 167 "//chrome/install_static:install_static_util", |
170 "//chrome/installer/util:with_no_strings", | 168 "//chrome/installer/util:with_no_strings", |
171 "//chrome_elf", | 169 "//chrome_elf", |
172 "//components/browser_watcher:browser_watcher_client", | 170 "//components/browser_watcher:browser_watcher_client", |
173 "//components/crash/content/app", | 171 "//components/crash/content/app:run_as_crashpad_handler", |
174 "//components/crash/core/common", | |
175 "//components/flags_ui:switches", | 172 "//components/flags_ui:switches", |
176 "//components/startup_metric_utils/common", | 173 "//components/startup_metric_utils/common", |
177 "//content:sandbox_helper_win", | 174 "//content:sandbox_helper_win", |
178 "//content/public/common:static_switches", | 175 "//content/public/common:static_switches", |
179 "//crypto", | 176 "//crypto", |
180 "//sandbox", | 177 "//sandbox", |
181 "//ui/gfx", | 178 "//ui/gfx", |
182 ] | 179 ] |
183 data_deps = [ | 180 data_deps = [ |
184 "//chrome/app/version_assembly:version_assembly_manifest", | 181 "//chrome/app/version_assembly:version_assembly_manifest", |
(...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1771 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1768 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1772 "//chrome/tools/build/linux/chrome-wrapper", | 1769 "//chrome/tools/build/linux/chrome-wrapper", |
1773 "//third_party/xdg-utils/scripts/xdg-mime", | 1770 "//third_party/xdg-utils/scripts/xdg-mime", |
1774 "//third_party/xdg-utils/scripts/xdg-settings", | 1771 "//third_party/xdg-utils/scripts/xdg-settings", |
1775 ] | 1772 ] |
1776 outputs = [ | 1773 outputs = [ |
1777 "$root_out_dir/{{source_file_part}}", | 1774 "$root_out_dir/{{source_file_part}}", |
1778 ] | 1775 ] |
1779 } | 1776 } |
1780 } | 1777 } |
OLD | NEW |