| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("quota") { | 7 blink_modules_sources("quota") { |
| 8 sources = [ | 8 sources = [ |
| 9 "DOMError.cpp", |
| 10 "DOMError.h", |
| 9 "DOMWindowQuota.cpp", | 11 "DOMWindowQuota.cpp", |
| 10 "DOMWindowQuota.h", | 12 "DOMWindowQuota.h", |
| 11 "DeprecatedStorageInfo.cpp", | 13 "DeprecatedStorageInfo.cpp", |
| 12 "DeprecatedStorageInfo.h", | 14 "DeprecatedStorageInfo.h", |
| 13 "DeprecatedStorageQuota.cpp", | 15 "DeprecatedStorageQuota.cpp", |
| 14 "DeprecatedStorageQuota.h", | 16 "DeprecatedStorageQuota.h", |
| 15 "DeprecatedStorageQuotaCallbacksImpl.cpp", | 17 "DeprecatedStorageQuotaCallbacksImpl.cpp", |
| 16 "DeprecatedStorageQuotaCallbacksImpl.h", | 18 "DeprecatedStorageQuotaCallbacksImpl.h", |
| 17 "NavigatorStorageQuota.cpp", | 19 "NavigatorStorageQuota.cpp", |
| 18 "NavigatorStorageQuota.h", | 20 "NavigatorStorageQuota.h", |
| 19 "StorageErrorCallback.cpp", | 21 "StorageErrorCallback.cpp", |
| 20 "StorageErrorCallback.h", | 22 "StorageErrorCallback.h", |
| 21 "StorageInfo.cpp", | 23 "StorageInfo.cpp", |
| 22 "StorageInfo.h", | 24 "StorageInfo.h", |
| 23 "StorageManager.cpp", | 25 "StorageManager.cpp", |
| 24 "StorageManager.h", | 26 "StorageManager.h", |
| 25 "StorageQuota.cpp", | 27 "StorageQuota.cpp", |
| 26 "StorageQuota.h", | 28 "StorageQuota.h", |
| 27 "StorageQuotaCallback.h", | 29 "StorageQuotaCallback.h", |
| 28 "StorageQuotaCallbacksImpl.cpp", | 30 "StorageQuotaCallbacksImpl.cpp", |
| 29 "StorageQuotaCallbacksImpl.h", | 31 "StorageQuotaCallbacksImpl.h", |
| 30 "StorageQuotaClient.cpp", | 32 "StorageQuotaClient.cpp", |
| 31 "StorageQuotaClient.h", | 33 "StorageQuotaClient.h", |
| 32 "StorageUsageCallback.h", | 34 "StorageUsageCallback.h", |
| 33 "WorkerNavigatorStorageQuota.cpp", | 35 "WorkerNavigatorStorageQuota.cpp", |
| 34 "WorkerNavigatorStorageQuota.h", | 36 "WorkerNavigatorStorageQuota.h", |
| 35 ] | 37 ] |
| 36 } | 38 } |
| OLD | NEW |