| 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("indexeddb") { | 7 blink_modules_sources("indexeddb") { |
| 8 sources = [ | 8 sources = [ |
| 9 "GlobalIndexedDB.cpp", | 9 "GlobalIndexedDB.cpp", |
| 10 "GlobalIndexedDB.h", | 10 "GlobalIndexedDB.h", |
| 11 "IDBAny.cpp", | 11 "IDBAny.cpp", |
| 12 "IDBAny.h", | 12 "IDBAny.h", |
| 13 "IDBCursor.cpp", | 13 "IDBCursor.cpp", |
| 14 "IDBCursor.h", | 14 "IDBCursor.h", |
| 15 "IDBCursorWithValue.cpp", | 15 "IDBCursorWithValue.cpp", |
| 16 "IDBCursorWithValue.h", | 16 "IDBCursorWithValue.h", |
| 17 "IDBDatabase.cpp", | 17 "IDBDatabase.cpp", |
| 18 "IDBDatabase.h", | 18 "IDBDatabase.h", |
| 19 "IDBDatabaseCallbacks.cpp", | |
| 20 "IDBDatabaseCallbacks.h", | |
| 21 "IDBEventDispatcher.cpp", | 19 "IDBEventDispatcher.cpp", |
| 22 "IDBEventDispatcher.h", | 20 "IDBEventDispatcher.h", |
| 23 "IDBFactory.cpp", | 21 "IDBFactory.cpp", |
| 24 "IDBFactory.h", | 22 "IDBFactory.h", |
| 25 "IDBHistograms.h", | 23 "IDBHistograms.h", |
| 26 "IDBIndex.cpp", | 24 "IDBIndex.cpp", |
| 27 "IDBIndex.h", | 25 "IDBIndex.h", |
| 28 "IDBKey.cpp", | 26 "IDBKey.cpp", |
| 29 "IDBKey.h", | 27 "IDBKey.h", |
| 30 "IDBKeyPath.cpp", | 28 "IDBKeyPath.cpp", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 52 "IDBValue.h", | 50 "IDBValue.h", |
| 53 "IDBVersionChangeEvent.cpp", | 51 "IDBVersionChangeEvent.cpp", |
| 54 "IDBVersionChangeEvent.h", | 52 "IDBVersionChangeEvent.h", |
| 55 "IndexedDB.h", | 53 "IndexedDB.h", |
| 56 "IndexedDBClient.cpp", | 54 "IndexedDBClient.cpp", |
| 57 "IndexedDBClient.h", | 55 "IndexedDBClient.h", |
| 58 "InspectorIndexedDBAgent.cpp", | 56 "InspectorIndexedDBAgent.cpp", |
| 59 "InspectorIndexedDBAgent.h", | 57 "InspectorIndexedDBAgent.h", |
| 60 "WebIDBCallbacksImpl.cpp", | 58 "WebIDBCallbacksImpl.cpp", |
| 61 "WebIDBCallbacksImpl.h", | 59 "WebIDBCallbacksImpl.h", |
| 62 "WebIDBDatabaseCallbacksImpl.cpp", | |
| 63 "WebIDBDatabaseCallbacksImpl.h", | |
| 64 "WebIDBObserverImpl.cpp", | 60 "WebIDBObserverImpl.cpp", |
| 65 "WebIDBObserverImpl.h", | 61 "WebIDBObserverImpl.h", |
| 66 ] | 62 ] |
| 67 } | 63 } |
| OLD | NEW |