| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "$root_out_dir/locales/fr.pak", | 97 "$root_out_dir/locales/fr.pak", |
| 98 ] | 98 ] |
| 99 } | 99 } |
| 100 | 100 |
| 101 data_deps = [] | 101 data_deps = [] |
| 102 | 102 |
| 103 # TODO(GYP) mac_bundle_resources, xcode_settings | 103 # TODO(GYP) mac_bundle_resources, xcode_settings |
| 104 | 104 |
| 105 if (is_win) { | 105 if (is_win) { |
| 106 sources += [ | 106 sources += [ |
| 107 "app/chrome_crash_reporter_client.cc", | 107 "app/chrome_crash_reporter_client_win.cc", |
| 108 "app/chrome_crash_reporter_client.h", | 108 "app/chrome_crash_reporter_client_win.h", |
| 109 "app/chrome_exe.rc", | 109 "app/chrome_exe.rc", |
| 110 "app/chrome_exe_load_config_win.cc", | 110 "app/chrome_exe_load_config_win.cc", |
| 111 "app/chrome_exe_main_win.cc", | 111 "app/chrome_exe_main_win.cc", |
| 112 "app/chrome_watcher_client_win.cc", | 112 "app/chrome_watcher_client_win.cc", |
| 113 "app/chrome_watcher_client_win.h", | 113 "app/chrome_watcher_client_win.h", |
| 114 "app/chrome_watcher_command_line_win.cc", | 114 "app/chrome_watcher_command_line_win.cc", |
| 115 "app/chrome_watcher_command_line_win.h", | 115 "app/chrome_watcher_command_line_win.h", |
| 116 "app/kasko_client.cc", | 116 "app/kasko_client.cc", |
| 117 "app/kasko_client.h", | 117 "app/kasko_client.h", |
| 118 "app/main_dll_loader_win.cc", | 118 "app/main_dll_loader_win.cc", |
| (...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1100 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1101 "//chrome/tools/build/linux/chrome-wrapper", | 1101 "//chrome/tools/build/linux/chrome-wrapper", |
| 1102 "//third_party/xdg-utils/scripts/xdg-mime", | 1102 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1103 "//third_party/xdg-utils/scripts/xdg-settings", | 1103 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1104 ] | 1104 ] |
| 1105 outputs = [ | 1105 outputs = [ |
| 1106 "$root_out_dir/{{source_file_part}}", | 1106 "$root_out_dir/{{source_file_part}}", |
| 1107 ] | 1107 ] |
| 1108 } | 1108 } |
| 1109 } | 1109 } |
| OLD | NEW |