Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: chrome/BUILD.gn

Issue 510633002: Improve the ScopedHandle verifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment to the lock Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
105 "app/delay_load_hook_win.cc", 107 "app/delay_load_hook_win.cc",
106 "app/delay_load_hook_win.h", 108 "app/delay_load_hook_win.h",
107 "//base/win/dllmain.cc", 109 "//base/win/dllmain.cc",
108 ] 110 ]
109 111
110 deps += [ 112 deps += [
111 # On Windows, link the dependencies (libraries) that make up actual 113 # On Windows, link the dependencies (libraries) that make up actual
112 # Chromium functionality into this .dll. 114 # Chromium functionality into this .dll.
113 #'chrome_version_resources', TODO(GYP) 115 #'chrome_version_resources', TODO(GYP)
114 "//chrome/app/theme:chrome_unscaled_resources", 116 "//chrome/app/theme:chrome_unscaled_resources",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 278
277 # GYP version: chrome/chrome_resources.gyp:chrome_strings 279 # GYP version: chrome/chrome_resources.gyp:chrome_strings
278 group("strings") { 280 group("strings") {
279 deps = [ 281 deps = [
280 "//chrome/app:chromium_strings", 282 "//chrome/app:chromium_strings",
281 "//chrome/app:generated_resources", 283 "//chrome/app:generated_resources",
282 "//chrome/app:google_chrome_strings", 284 "//chrome/app:google_chrome_strings",
283 "//chrome/app/resources:locale_settings", 285 "//chrome/app/resources:locale_settings",
284 ] 286 ]
285 } 287 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698