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

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

Issue 520913003: Split storage macros into storage and storage_common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 component("storage") { 5 component("storage") {
6 output_name = "storage" 6 output_name = "storage"
7 sources = [ 7 sources = [
8 "storage_export.h", 8 "../common/storage_export.h",
jamesr 2014/08/29 20:46:10 this should be using its own export header
9 "blob/blob_data_handle.cc", 9 "blob/blob_data_handle.cc",
10 "blob/blob_data_handle.h", 10 "blob/blob_data_handle.h",
11 "blob/blob_storage_context.cc", 11 "blob/blob_storage_context.cc",
12 "blob/blob_storage_context.h", 12 "blob/blob_storage_context.h",
13 "blob/blob_url_request_job.cc", 13 "blob/blob_url_request_job.cc",
14 "blob/blob_url_request_job.h", 14 "blob/blob_url_request_job.h",
15 "blob/blob_url_request_job_factory.cc", 15 "blob/blob_url_request_job_factory.cc",
16 "blob/blob_url_request_job_factory.h", 16 "blob/blob_url_request_job_factory.h",
17 "blob/file_stream_reader.cc", 17 "blob/file_stream_reader.cc",
18 "blob/file_stream_reader.h", 18 "blob/file_stream_reader.h",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "quota/special_storage_policy.cc", 145 "quota/special_storage_policy.cc",
146 "quota/special_storage_policy.h", 146 "quota/special_storage_policy.h",
147 "quota/storage_monitor.cc", 147 "quota/storage_monitor.cc",
148 "quota/storage_monitor.h", 148 "quota/storage_monitor.h",
149 "quota/storage_observer.cc", 149 "quota/storage_observer.cc",
150 "quota/storage_observer.h", 150 "quota/storage_observer.h",
151 "quota/usage_tracker.cc", 151 "quota/usage_tracker.cc",
152 "quota/usage_tracker.h", 152 "quota/usage_tracker.h",
153 ] 153 ]
154 154
155 defines = [ "WEBKIT_STORAGE_BROWSER_IMPLEMENTATION" ] 155 defines = [ "STORAGE_IMPLEMENTATION" ]
jamesr 2014/08/29 20:46:10 this should be something like STORAGE_BROWSER_IMPL
156 configs += [ "//build/config/compiler:wexit_time_destructors" ] 156 configs += [ "//build/config/compiler:wexit_time_destructors" ]
157 if (is_win) { 157 if (is_win) {
158 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. 158 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
159 } 159 }
160 160
161 deps = [ 161 deps = [
162 "//base", 162 "//base",
163 "//base:i18n", 163 "//base:i18n",
164 "//base/third_party/dynamic_annotations", 164 "//base/third_party/dynamic_annotations",
165 "//net", 165 "//net",
166 "//sql", 166 "//sql",
167 "//third_party/leveldatabase", 167 "//third_party/leveldatabase",
168 "//third_party/sqlite", 168 "//third_party/sqlite",
169 "//url", 169 "//url",
170 "//webkit/common", 170 "//webkit/common",
171 "//webkit/common:storage", 171 "//webkit/common:storage_common",
172 ] 172 ]
173 173
174 # TODO(GYP) support chrome_multiple_dll 174 # TODO(GYP) support chrome_multiple_dll
175 #['chrome_multiple_dll!=1', { 175 #['chrome_multiple_dll!=1', {
176 # 'dependencies': [ 176 # 'dependencies': [
177 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 177 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
178 # ], 178 # ],
179 #}], 179 #}],
180 } 180 }
181 181
182 executable("dump_file_system") { 182 executable("dump_file_system") {
183 sources = [ 183 sources = [
184 "fileapi/dump_file_system.cc", 184 "fileapi/dump_file_system.cc",
185 ] 185 ]
186 186
187 deps = [ 187 deps = [
188 ":storage", 188 ":storage",
189 "//base", 189 "//base",
190 "//webkit/common:storage", 190 "//webkit/common:storage_common",
191 ] 191 ]
192 } 192 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | webkit/common/BUILD.gn » ('j') | webkit/common/storage_export.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698