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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
10 | 10 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 158 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
159 | 159 |
160 deps = [ | 160 deps = [ |
161 ":browser_dependencies", | 161 ":browser_dependencies", |
162 "//base/allocator", | 162 "//base/allocator", |
163 ] | 163 ] |
164 if (is_win) { | 164 if (is_win) { |
165 output_name = "chrome" | 165 output_name = "chrome" |
166 | 166 |
167 sources = [ | 167 sources = [ |
168 "$root_gen_dir/base/trace_event/etw_manifest/chrome_events_win.rc", | |
169 "//base/win/dllmain.cc", | 168 "//base/win/dllmain.cc", |
170 "app/chrome_command_ids.h", | 169 "app/chrome_command_ids.h", |
171 "app/chrome_dll.rc", | 170 "app/chrome_dll.rc", |
172 "app/chrome_dll_resource.h", | 171 "app/chrome_dll_resource.h", |
173 "app/chrome_main.cc", | 172 "app/chrome_main.cc", |
174 "app/chrome_main_delegate.cc", | 173 "app/chrome_main_delegate.cc", |
175 "app/chrome_main_delegate.h", | 174 "app/chrome_main_delegate.h", |
176 "app/close_handle_hook_win.cc", | 175 "app/close_handle_hook_win.cc", |
177 "app/close_handle_hook_win.h", | 176 "app/close_handle_hook_win.h", |
178 "app/delay_load_hook_win.cc", | 177 "app/delay_load_hook_win.cc", |
179 "app/delay_load_hook_win.h", | 178 "app/delay_load_hook_win.h", |
180 ] | 179 ] |
181 | 180 |
182 deps += [ | 181 deps += [ |
183 # On Windows, link the dependencies (libraries) that make up actual | 182 # On Windows, link the dependencies (libraries) that make up actual |
184 # Chromium functionality into this .dll. | 183 # Chromium functionality into this .dll. |
185 ":chrome_version_resources", | 184 ":chrome_version_resources", |
186 "//base/trace_event/etw_manifest:chrome_events_win", | |
187 "//chrome/app/theme:chrome_unscaled_resources", | 185 "//chrome/app/theme:chrome_unscaled_resources", |
188 "//chrome_elf", | 186 "//chrome_elf", |
189 "//content/app/resources", | 187 "//content/app/resources", |
190 "//crypto", | 188 "//crypto", |
191 "//net:net_resources", | 189 "//net:net_resources", |
192 "//third_party/wtl", | 190 "//third_party/wtl", |
193 "//ui/views", | 191 "//ui/views", |
194 ] | 192 ] |
195 if (enable_configuration_policy) { | 193 if (enable_configuration_policy) { |
196 deps += [ "//components/policy" ] | 194 deps += [ "//components/policy" ] |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 | 742 |
745 args = [ | 743 args = [ |
746 rebase_path(infile, root_build_dir), | 744 rebase_path(infile, root_build_dir), |
747 rebase_path(outfile, root_build_dir), | 745 rebase_path(outfile, root_build_dir), |
748 "-e s/@@NAME@@/$name/", | 746 "-e s/@@NAME@@/$name/", |
749 "-e s/@@FILENAME@@/$filename/", | 747 "-e s/@@FILENAME@@/$filename/", |
750 "-e s/@@CONFDIR@@/$confdir/", | 748 "-e s/@@CONFDIR@@/$confdir/", |
751 ] | 749 ] |
752 } | 750 } |
753 } | 751 } |
OLD | NEW |