| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build/config/win/manifest.gni") | 10 import("//build/config/win/manifest.gni") |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 sources += [ | 103 sources += [ |
| 104 "app/chrome_crash_reporter_client.cc", | 104 "app/chrome_crash_reporter_client.cc", |
| 105 "app/chrome_crash_reporter_client.h", | 105 "app/chrome_crash_reporter_client.h", |
| 106 "app/chrome_exe.rc", | 106 "app/chrome_exe.rc", |
| 107 "app/chrome_exe_load_config_win.cc", | 107 "app/chrome_exe_load_config_win.cc", |
| 108 "app/chrome_exe_main_win.cc", | 108 "app/chrome_exe_main_win.cc", |
| 109 "app/chrome_watcher_client_win.cc", | 109 "app/chrome_watcher_client_win.cc", |
| 110 "app/chrome_watcher_client_win.h", | 110 "app/chrome_watcher_client_win.h", |
| 111 "app/chrome_watcher_command_line_win.cc", | 111 "app/chrome_watcher_command_line_win.cc", |
| 112 "app/chrome_watcher_command_line_win.h", | 112 "app/chrome_watcher_command_line_win.h", |
| 113 "app/client_util.cc", | |
| 114 "app/client_util.h", | |
| 115 "app/kasko_client.cc", | 113 "app/kasko_client.cc", |
| 116 "app/kasko_client.h", | 114 "app/kasko_client.h", |
| 115 "app/main_dll_loader_win.cc", |
| 116 "app/main_dll_loader_win.h", |
| 117 "app/signature_validator_win.cc", | 117 "app/signature_validator_win.cc", |
| 118 "app/signature_validator_win.h", | 118 "app/signature_validator_win.h", |
| 119 "common/crash_keys.cc", | 119 "common/crash_keys.cc", |
| 120 "common/crash_keys.h", | 120 "common/crash_keys.h", |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 deps += [ | 123 deps += [ |
| 124 ":chrome_dll", | 124 ":chrome_dll", |
| 125 ":chrome_exe_version", | 125 ":chrome_exe_version", |
| 126 ":client_util", |
| 126 ":image_pre_reader", | 127 ":image_pre_reader", |
| 127 | 128 |
| 128 # 'chrome_nacl_win64" TODO(GYP) bug 512869 | 129 # 'chrome_nacl_win64" TODO(GYP) bug 512869 |
| 129 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) bug 51286
7 | 130 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) bug 51286
7 |
| 130 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) bug 51
2864 | 131 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) bug 51
2864 |
| 131 "//base", | 132 "//base", |
| 132 "//breakpad:breakpad_handler", | 133 "//breakpad:breakpad_handler", |
| 133 "//breakpad:breakpad_sender", | 134 "//breakpad:breakpad_sender", |
| 134 "//chrome/app/version_assembly:chrome_exe_manifest", | 135 "//chrome/app/version_assembly:chrome_exe_manifest", |
| 135 "//chrome/browser:chrome_process_finder", | 136 "//chrome/browser:chrome_process_finder", |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 } | 511 } |
| 511 | 512 |
| 512 process_version("other_version") { | 513 process_version("other_version") { |
| 513 template_file = chrome_version_rc_template | 514 template_file = chrome_version_rc_template |
| 514 sources = [ | 515 sources = [ |
| 515 "app/other.ver", | 516 "app/other.ver", |
| 516 ] | 517 ] |
| 517 output = "$target_gen_dir/other_version.rc" | 518 output = "$target_gen_dir/other_version.rc" |
| 518 } | 519 } |
| 519 | 520 |
| 521 source_set("client_util") { |
| 522 sources = [ |
| 523 "app/client_util.cc", |
| 524 "app/client_util.h", |
| 525 ] |
| 526 deps = [ |
| 527 "//base", |
| 528 ] |
| 529 } |
| 530 |
| 520 source_set("image_pre_reader") { | 531 source_set("image_pre_reader") { |
| 521 sources = [ | 532 sources = [ |
| 522 "app/image_pre_reader_win.cc", | 533 "app/image_pre_reader_win.cc", |
| 523 "app/image_pre_reader_win.h", | 534 "app/image_pre_reader_win.h", |
| 524 ] | 535 ] |
| 525 deps = [ | 536 deps = [ |
| 526 "//base", | 537 "//base", |
| 527 ] | 538 ] |
| 528 } | 539 } |
| 529 } | 540 } |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1063 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1053 "//chrome/tools/build/linux/chrome-wrapper", | 1064 "//chrome/tools/build/linux/chrome-wrapper", |
| 1054 "//third_party/xdg-utils/scripts/xdg-mime", | 1065 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1055 "//third_party/xdg-utils/scripts/xdg-settings", | 1066 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1056 ] | 1067 ] |
| 1057 outputs = [ | 1068 outputs = [ |
| 1058 "$root_out_dir/{{source_file_part}}", | 1069 "$root_out_dir/{{source_file_part}}", |
| 1059 ] | 1070 ] |
| 1060 } | 1071 } |
| 1061 } | 1072 } |
| OLD | NEW |