| Index: third_party/WebKit/Source/modules/indexeddb/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/BUILD.gn b/third_party/WebKit/Source/modules/indexeddb/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ffaf7a89c2c554205d8e7e2845d1fdea43db324e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/BUILD.gn
|
| @@ -0,0 +1,67 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//third_party/WebKit/Source/modules/modules.gni")
|
| +
|
| +blink_modules_sources("indexeddb") {
|
| + sources = [
|
| + "GlobalIndexedDB.cpp",
|
| + "GlobalIndexedDB.h",
|
| + "IDBAny.cpp",
|
| + "IDBAny.h",
|
| + "IDBCursor.cpp",
|
| + "IDBCursor.h",
|
| + "IDBCursorWithValue.cpp",
|
| + "IDBCursorWithValue.h",
|
| + "IDBDatabase.cpp",
|
| + "IDBDatabase.h",
|
| + "IDBDatabaseCallbacks.cpp",
|
| + "IDBDatabaseCallbacks.h",
|
| + "IDBEventDispatcher.cpp",
|
| + "IDBEventDispatcher.h",
|
| + "IDBFactory.cpp",
|
| + "IDBFactory.h",
|
| + "IDBHistograms.h",
|
| + "IDBIndex.cpp",
|
| + "IDBIndex.h",
|
| + "IDBKey.cpp",
|
| + "IDBKey.h",
|
| + "IDBKeyPath.cpp",
|
| + "IDBKeyPath.h",
|
| + "IDBKeyRange.cpp",
|
| + "IDBKeyRange.h",
|
| + "IDBMetadata.cpp",
|
| + "IDBMetadata.h",
|
| + "IDBObjectStore.cpp",
|
| + "IDBObjectStore.h",
|
| + "IDBObservation.cpp",
|
| + "IDBObservation.h",
|
| + "IDBObserver.cpp",
|
| + "IDBObserver.h",
|
| + "IDBObserverChanges.cpp",
|
| + "IDBObserverChanges.h",
|
| + "IDBOpenDBRequest.cpp",
|
| + "IDBOpenDBRequest.h",
|
| + "IDBRequest.cpp",
|
| + "IDBRequest.h",
|
| + "IDBTracing.h",
|
| + "IDBTransaction.cpp",
|
| + "IDBTransaction.h",
|
| + "IDBValue.cpp",
|
| + "IDBValue.h",
|
| + "IDBVersionChangeEvent.cpp",
|
| + "IDBVersionChangeEvent.h",
|
| + "IndexedDB.h",
|
| + "IndexedDBClient.cpp",
|
| + "IndexedDBClient.h",
|
| + "InspectorIndexedDBAgent.cpp",
|
| + "InspectorIndexedDBAgent.h",
|
| + "WebIDBCallbacksImpl.cpp",
|
| + "WebIDBCallbacksImpl.h",
|
| + "WebIDBDatabaseCallbacksImpl.cpp",
|
| + "WebIDBDatabaseCallbacksImpl.h",
|
| + "WebIDBObserverImpl.cpp",
|
| + "WebIDBObserverImpl.h",
|
| + ]
|
| +}
|
|
|