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

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

Issue 524983002: Move fileapi-related files from webkit/common/ to storage/common/ and set up redirect headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit 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
« no previous file with comments | « webkit/DEPS ('k') | webkit/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: webkit/storage_browser.gyp:storage
5 component("storage") { 6 component("storage") {
6 output_name = "storage" 7 output_name = "storage"
7 sources = [ 8 sources = [
8 "storage_browser_export.h", 9 "storage_browser_export.h",
9 "blob/blob_data_handle.cc", 10 "blob/blob_data_handle.cc",
10 "blob/blob_data_handle.h", 11 "blob/blob_data_handle.h",
11 "blob/blob_storage_context.cc", 12 "blob/blob_storage_context.cc",
12 "blob/blob_storage_context.h", 13 "blob/blob_storage_context.h",
13 "blob/blob_url_request_job.cc", 14 "blob/blob_url_request_job.cc",
14 "blob/blob_url_request_job.h", 15 "blob/blob_url_request_job.h",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 if (is_win) { 158 if (is_win) {
158 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. 159 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
159 } 160 }
160 161
161 deps = [ 162 deps = [
162 "//base", 163 "//base",
163 "//base:i18n", 164 "//base:i18n",
164 "//base/third_party/dynamic_annotations", 165 "//base/third_party/dynamic_annotations",
165 "//net", 166 "//net",
166 "//sql", 167 "//sql",
168 "//storage/common",
167 "//third_party/leveldatabase", 169 "//third_party/leveldatabase",
168 "//third_party/sqlite", 170 "//third_party/sqlite",
169 "//url", 171 "//url",
170 "//webkit/common",
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_common", 190 "//storage/common",
191 ] 191 ]
192 } 192 }
OLDNEW
« no previous file with comments | « webkit/DEPS ('k') | webkit/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698