| 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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "IDBObservation.cpp", | 38 "IDBObservation.cpp", |
| 39 "IDBObservation.h", | 39 "IDBObservation.h", |
| 40 "IDBObserver.cpp", | 40 "IDBObserver.cpp", |
| 41 "IDBObserver.h", | 41 "IDBObserver.h", |
| 42 "IDBObserverChanges.cpp", | 42 "IDBObserverChanges.cpp", |
| 43 "IDBObserverChanges.h", | 43 "IDBObserverChanges.h", |
| 44 "IDBOpenDBRequest.cpp", | 44 "IDBOpenDBRequest.cpp", |
| 45 "IDBOpenDBRequest.h", | 45 "IDBOpenDBRequest.h", |
| 46 "IDBRequest.cpp", | 46 "IDBRequest.cpp", |
| 47 "IDBRequest.h", | 47 "IDBRequest.h", |
| 48 "IDBRequestLoader.cpp", |
| 49 "IDBRequestLoader.h", |
| 50 "IDBRequestQueueItem.cpp", |
| 51 "IDBRequestQueueItem.h", |
| 48 "IDBTracing.h", | 52 "IDBTracing.h", |
| 49 "IDBTransaction.cpp", | 53 "IDBTransaction.cpp", |
| 50 "IDBTransaction.h", | 54 "IDBTransaction.h", |
| 51 "IDBValue.cpp", | 55 "IDBValue.cpp", |
| 52 "IDBValue.h", | 56 "IDBValue.h", |
| 57 "IDBValueWrapping.cpp", |
| 58 "IDBValueWrapping.h", |
| 53 "IDBVersionChangeEvent.cpp", | 59 "IDBVersionChangeEvent.cpp", |
| 54 "IDBVersionChangeEvent.h", | 60 "IDBVersionChangeEvent.h", |
| 55 "IndexedDB.h", | 61 "IndexedDB.h", |
| 56 "IndexedDBClient.cpp", | 62 "IndexedDBClient.cpp", |
| 57 "IndexedDBClient.h", | 63 "IndexedDBClient.h", |
| 58 "InspectorIndexedDBAgent.cpp", | 64 "InspectorIndexedDBAgent.cpp", |
| 59 "InspectorIndexedDBAgent.h", | 65 "InspectorIndexedDBAgent.h", |
| 60 "WebIDBCallbacksImpl.cpp", | 66 "WebIDBCallbacksImpl.cpp", |
| 61 "WebIDBCallbacksImpl.h", | 67 "WebIDBCallbacksImpl.h", |
| 62 "WebIDBDatabaseCallbacksImpl.cpp", | 68 "WebIDBDatabaseCallbacksImpl.cpp", |
| 63 "WebIDBDatabaseCallbacksImpl.h", | 69 "WebIDBDatabaseCallbacksImpl.h", |
| 64 ] | 70 ] |
| 65 } | 71 } |
| OLD | NEW |