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/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 | 8 |
9 # TODO(GYP) for Windows need to the the reorder-imports step which probably | 9 # TODO(GYP) for Windows need to the the reorder-imports step which probably |
10 # means adding another target and renaming this to chrome_initial like in GYP. | 10 # means adding another target and renaming this to chrome_initial like in GYP. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 if (is_win) { | 95 if (is_win) { |
96 output_name = "chrome" | 96 output_name = "chrome" |
97 | 97 |
98 sources = [ | 98 sources = [ |
99 "app/chrome_command_ids.h", | 99 "app/chrome_command_ids.h", |
100 "app/chrome_dll.rc", | 100 "app/chrome_dll.rc", |
101 "app/chrome_dll_resource.h", | 101 "app/chrome_dll_resource.h", |
102 "app/chrome_main.cc", | 102 "app/chrome_main.cc", |
103 "app/chrome_main_delegate.cc", | 103 "app/chrome_main_delegate.cc", |
104 "app/chrome_main_delegate.h", | 104 "app/chrome_main_delegate.h", |
105 "app/close_handle_hook_win.cc", | |
106 "app/close_handle_hook_win.h", | |
107 "app/delay_load_hook_win.cc", | 105 "app/delay_load_hook_win.cc", |
108 "app/delay_load_hook_win.h", | 106 "app/delay_load_hook_win.h", |
109 "//base/win/dllmain.cc", | 107 "//base/win/dllmain.cc", |
110 ] | 108 ] |
111 | 109 |
112 deps += [ | 110 deps += [ |
113 # On Windows, link the dependencies (libraries) that make up actual | 111 # On Windows, link the dependencies (libraries) that make up actual |
114 # Chromium functionality into this .dll. | 112 # Chromium functionality into this .dll. |
115 #'chrome_version_resources', TODO(GYP) | 113 #'chrome_version_resources', TODO(GYP) |
116 "//chrome/app/theme:chrome_unscaled_resources", | 114 "//chrome/app/theme:chrome_unscaled_resources", |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 | 276 |
279 # GYP version: chrome/chrome_resources.gyp:chrome_strings | 277 # GYP version: chrome/chrome_resources.gyp:chrome_strings |
280 group("strings") { | 278 group("strings") { |
281 deps = [ | 279 deps = [ |
282 "//chrome/app:chromium_strings", | 280 "//chrome/app:chromium_strings", |
283 "//chrome/app:generated_resources", | 281 "//chrome/app:generated_resources", |
284 "//chrome/app:google_chrome_strings", | 282 "//chrome/app:google_chrome_strings", |
285 "//chrome/app/resources:locale_settings", | 283 "//chrome/app/resources:locale_settings", |
286 ] | 284 ] |
287 } | 285 } |
OLD | NEW |