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

Side by Side Diff: storage/common/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 | « storage/browser/BUILD.gn ('k') | third_party/boringssl/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_common.gyp:storage_common 5 # GYP version: storage/storage_common.gyp:storage_common
6 component("common") { 6 component("common") {
7 output_name = "storage_common" 7 output_name = "storage_common"
8 sources = [ 8 sources = [
9 "data_element.cc", 9 "data_element.cc",
10 "data_element.h", 10 "data_element.h",
11 "storage_common_export.h", 11 "storage_common_export.h",
12 "database/database_connections.cc", 12 "database/database_connections.cc",
13 "database/database_connections.h", 13 "database/database_connections.h",
14 "database/database_identifier.cc", 14 "database/database_identifier.cc",
15 "database/database_identifier.h", 15 "database/database_identifier.h",
16 "fileapi/directory_entry.cc", 16 "fileapi/directory_entry.cc",
17 "fileapi/directory_entry.h", 17 "fileapi/directory_entry.h",
18 "fileapi/file_system_info.cc", 18 "fileapi/file_system_info.cc",
19 "fileapi/file_system_info.h", 19 "fileapi/file_system_info.h",
20 "fileapi/file_system_mount_option.h", 20 "fileapi/file_system_mount_option.h",
21 "fileapi/file_system_types.h", 21 "fileapi/file_system_types.h",
22 "fileapi/file_system_util.cc", 22 "fileapi/file_system_util.cc",
23 "fileapi/file_system_util.h", 23 "fileapi/file_system_util.h",
24 "quota/quota_status_code.cc", 24 "quota/quota_status_code.cc",
25 "quota/quota_status_code.h", 25 "quota/quota_status_code.h",
26 "quota/quota_types.h", 26 "quota/quota_types.h",
27 ] 27 ]
28 28
29 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
30 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
31
29 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] 32 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ]
30 if (is_win) {
31 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
32 }
33 33
34 deps = [ 34 deps = [
35 "//base", 35 "//base",
36 "//base/third_party/dynamic_annotations", 36 "//base/third_party/dynamic_annotations",
37 "//net", 37 "//net",
38 "//url", 38 "//url",
39 ] 39 ]
40 } 40 }
OLDNEW
« no previous file with comments | « storage/browser/BUILD.gn ('k') | third_party/boringssl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698