| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 if (is_win) { | 135 if (is_win) { |
| 136 sources += [ | 136 sources += [ |
| 137 "app/chrome_exe.rc", | 137 "app/chrome_exe.rc", |
| 138 "app/chrome_exe_load_config_win.cc", | 138 "app/chrome_exe_load_config_win.cc", |
| 139 "app/chrome_exe_main_win.cc", | 139 "app/chrome_exe_main_win.cc", |
| 140 "app/chrome_watcher_client_win.cc", | 140 "app/chrome_watcher_client_win.cc", |
| 141 "app/chrome_watcher_client_win.h", | 141 "app/chrome_watcher_client_win.h", |
| 142 "app/chrome_watcher_command_line_win.cc", | 142 "app/chrome_watcher_command_line_win.cc", |
| 143 "app/chrome_watcher_command_line_win.h", | 143 "app/chrome_watcher_command_line_win.h", |
| 144 "app/kasko_client.cc", | |
| 145 "app/kasko_client.h", | |
| 146 "app/main_dll_loader_win.cc", | 144 "app/main_dll_loader_win.cc", |
| 147 "app/main_dll_loader_win.h", | 145 "app/main_dll_loader_win.h", |
| 148 "common/crash_keys.cc", | 146 "common/crash_keys.cc", |
| 149 "common/crash_keys.h", | 147 "common/crash_keys.h", |
| 150 ] | 148 ] |
| 151 | 149 |
| 152 deps += [ | 150 deps += [ |
| 153 ":chrome_dll", | 151 ":chrome_dll", |
| 154 ":chrome_exe_version", | 152 ":chrome_exe_version", |
| 155 ":copy_first_run", | 153 ":copy_first_run", |
| (...skipping 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1768 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1766 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1769 "//chrome/tools/build/linux/chrome-wrapper", | 1767 "//chrome/tools/build/linux/chrome-wrapper", |
| 1770 "//third_party/xdg-utils/scripts/xdg-mime", | 1768 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1771 "//third_party/xdg-utils/scripts/xdg-settings", | 1769 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1772 ] | 1770 ] |
| 1773 outputs = [ | 1771 outputs = [ |
| 1774 "$root_out_dir/{{source_file_part}}", | 1772 "$root_out_dir/{{source_file_part}}", |
| 1775 ] | 1773 ] |
| 1776 } | 1774 } |
| 1777 } | 1775 } |
| OLD | NEW |