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/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//chrome/chrome_repack_locales.gni") | 9 import("//chrome/chrome_repack_locales.gni") |
10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 ":chrome_exe_version", | 64 ":chrome_exe_version", |
65 ":image_pre_reader", | 65 ":image_pre_reader", |
66 ":main_dll", | 66 ":main_dll", |
67 | 67 |
68 # 'chrome_nacl_win64" TODO(GYP) | 68 # 'chrome_nacl_win64" TODO(GYP) |
69 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) | 69 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) |
70 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) | 70 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) |
71 "//base", | 71 "//base", |
72 "//breakpad:breakpad_handler", | 72 "//breakpad:breakpad_handler", |
73 "//breakpad:breakpad_sender", | 73 "//breakpad:breakpad_sender", |
| 74 "//chrome/app/version_assembly:chrome_exe_manifest", |
74 "//chrome/browser:chrome_process_finder", | 75 "//chrome/browser:chrome_process_finder", |
75 "//chrome/chrome_watcher", | 76 "//chrome/chrome_watcher", |
76 "//chrome/chrome_watcher:client", | 77 "//chrome/chrome_watcher:client", |
77 "//chrome/installer/util", | 78 "//chrome/installer/util", |
78 "//chrome_elf", | 79 "//chrome_elf", |
79 "//components/browser_watcher:browser_watcher_client", | 80 "//components/browser_watcher:browser_watcher_client", |
80 "//components/crash/app", | 81 "//components/crash/app", |
81 "//content:startup_helper_win", | 82 "//content:startup_helper_win", |
82 "//crypto", | 83 "//crypto", |
83 "//sandbox", | 84 "//sandbox", |
84 "//ui/gfx", | 85 "//ui/gfx", |
85 ] | 86 ] |
| 87 data_deps = [ "//chrome/app/version_assembly:version_assembly_manifest" ] |
| 88 |
86 libs = [ | 89 libs = [ |
87 "wintrust.lib", | 90 "wintrust.lib", |
88 "crypt32.lib", | 91 "crypt32.lib", |
89 ] | 92 ] |
90 configs -= [ "//build/config/win:console" ] | 93 configs -= [ "//build/config/win:console" ] |
91 configs += [ "//build/config/win:windowed" ] | 94 configs += [ "//build/config/win:windowed" ] |
92 } else if (use_aura) { | 95 } else if (use_aura) { |
93 # Non-Windows aura entrypoint. | 96 # Non-Windows aura entrypoint. |
94 sources += [ "app/chrome_exe_main_aura.cc" ] | 97 sources += [ "app/chrome_exe_main_aura.cc" ] |
95 } | 98 } |
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 rebase_path(chrome_binary, root_build_dir), | 892 rebase_path(chrome_binary, root_build_dir), |
890 rebase_path(symbol_file, root_build_dir), | 893 rebase_path(symbol_file, root_build_dir), |
891 ] | 894 ] |
892 | 895 |
893 deps = [ | 896 deps = [ |
894 ":chrome", | 897 ":chrome", |
895 dump_syms_label, | 898 dump_syms_label, |
896 ] | 899 ] |
897 } | 900 } |
898 } | 901 } |
OLD | NEW |