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

Side by Side Diff: storage/browser/BUILD.gn

Issue 929793006: Update existing uses of /wd4267 to use the GN config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@x64
Patch Set: Created 5 years, 10 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
« no previous file with comments | « sql/BUILD.gn ('k') | storage/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP version: storage/storage_browser.gyp:storage 5 # GYP version: storage/storage_browser.gyp:storage
6 component("browser") { 6 component("browser") {
7 output_name = "storage_browser" 7 output_name = "storage_browser"
8 sources = [ 8 sources = [
9 "storage_browser_export.h", 9 "storage_browser_export.h",
10 "blob/blob_data_builder.cc", 10 "blob/blob_data_builder.cc",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "quota/special_storage_policy.h", 163 "quota/special_storage_policy.h",
164 "quota/storage_monitor.cc", 164 "quota/storage_monitor.cc",
165 "quota/storage_monitor.h", 165 "quota/storage_monitor.h",
166 "quota/storage_observer.cc", 166 "quota/storage_observer.cc",
167 "quota/storage_observer.h", 167 "quota/storage_observer.h",
168 "quota/usage_tracker.cc", 168 "quota/usage_tracker.cc",
169 "quota/usage_tracker.h", 169 "quota/usage_tracker.h",
170 ] 170 ]
171 171
172 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ] 172 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ]
173 configs += [ "//build/config/compiler:wexit_time_destructors" ] 173 configs += [
174 if (is_win) { 174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
175 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. 175 "//build/config/compiler:no_size_t_to_int_warning",
176 } 176 "//build/config/compiler:wexit_time_destructors",
177 ]
177 178
178 deps = [ 179 deps = [
179 "//base", 180 "//base",
180 "//base:i18n", 181 "//base:i18n",
181 "//base/third_party/dynamic_annotations", 182 "//base/third_party/dynamic_annotations",
182 "//net", 183 "//net",
183 "//sql", 184 "//sql",
184 "//storage/common", 185 "//storage/common",
185 "//third_party/leveldatabase", 186 "//third_party/leveldatabase",
186 "//third_party/sqlite", 187 "//third_party/sqlite",
(...skipping 12 matching lines...) Expand all
199 sources = [ 200 sources = [
200 "fileapi/dump_file_system.cc", 201 "fileapi/dump_file_system.cc",
201 ] 202 ]
202 203
203 deps = [ 204 deps = [
204 ":browser", 205 ":browser",
205 "//base", 206 "//base",
206 "//storage/common", 207 "//storage/common",
207 ] 208 ]
208 } 209 }
OLDNEW
« no previous file with comments | « sql/BUILD.gn ('k') | storage/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698