| 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("webdatabase") { | 7 blink_modules_sources("webdatabase") { |
| 8 sources = [ | 8 sources = [ |
| 9 "ChangeVersionData.h", | 9 "ChangeVersionData.h", |
| 10 "ChangeVersionWrapper.cpp", | 10 "ChangeVersionWrapper.cpp", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "SQLError.cpp", | 39 "SQLError.cpp", |
| 40 "SQLError.h", | 40 "SQLError.h", |
| 41 "SQLResultSet.cpp", | 41 "SQLResultSet.cpp", |
| 42 "SQLResultSet.h", | 42 "SQLResultSet.h", |
| 43 "SQLResultSetRowList.cpp", | 43 "SQLResultSetRowList.cpp", |
| 44 "SQLResultSetRowList.h", | 44 "SQLResultSetRowList.h", |
| 45 "SQLStatement.cpp", | 45 "SQLStatement.cpp", |
| 46 "SQLStatement.h", | 46 "SQLStatement.h", |
| 47 "SQLStatementBackend.cpp", | 47 "SQLStatementBackend.cpp", |
| 48 "SQLStatementBackend.h", | 48 "SQLStatementBackend.h", |
| 49 "SQLStatementCallback.h", |
| 50 "SQLStatementErrorCallback.h", |
| 49 "SQLTransaction.cpp", | 51 "SQLTransaction.cpp", |
| 50 "SQLTransaction.h", | 52 "SQLTransaction.h", |
| 51 "SQLTransactionBackend.cpp", | 53 "SQLTransactionBackend.cpp", |
| 52 "SQLTransactionBackend.h", | 54 "SQLTransactionBackend.h", |
| 55 "SQLTransactionCallback.h", |
| 53 "SQLTransactionClient.cpp", | 56 "SQLTransactionClient.cpp", |
| 54 "SQLTransactionClient.h", | 57 "SQLTransactionClient.h", |
| 55 "SQLTransactionCoordinator.cpp", | 58 "SQLTransactionCoordinator.cpp", |
| 56 "SQLTransactionCoordinator.h", | 59 "SQLTransactionCoordinator.h", |
| 60 "SQLTransactionErrorCallback.h", |
| 57 "SQLTransactionState.h", | 61 "SQLTransactionState.h", |
| 58 "SQLTransactionStateMachine.cpp", | 62 "SQLTransactionStateMachine.cpp", |
| 59 "SQLTransactionStateMachine.h", | 63 "SQLTransactionStateMachine.h", |
| 60 "StorageLog.h", | 64 "StorageLog.h", |
| 61 "sqlite/SQLLog.h", | 65 "sqlite/SQLLog.h", |
| 62 "sqlite/SQLValue.cpp", | 66 "sqlite/SQLValue.cpp", |
| 63 "sqlite/SQLValue.h", | 67 "sqlite/SQLValue.h", |
| 64 "sqlite/SQLiteAuthorizer.cpp", | 68 "sqlite/SQLiteAuthorizer.cpp", |
| 65 "sqlite/SQLiteDatabase.cpp", | 69 "sqlite/SQLiteDatabase.cpp", |
| 66 "sqlite/SQLiteDatabase.h", | 70 "sqlite/SQLiteDatabase.h", |
| 67 "sqlite/SQLiteFileSystem.cpp", | 71 "sqlite/SQLiteFileSystem.cpp", |
| 68 "sqlite/SQLiteFileSystem.h", | 72 "sqlite/SQLiteFileSystem.h", |
| 69 "sqlite/SQLiteStatement.cpp", | 73 "sqlite/SQLiteStatement.cpp", |
| 70 "sqlite/SQLiteStatement.h", | 74 "sqlite/SQLiteStatement.h", |
| 71 "sqlite/SQLiteTransaction.cpp", | 75 "sqlite/SQLiteTransaction.cpp", |
| 72 "sqlite/SQLiteTransaction.h", | 76 "sqlite/SQLiteTransaction.h", |
| 73 ] | 77 ] |
| 74 | 78 |
| 75 if (is_win) { | 79 if (is_win) { |
| 76 sources += [ "sqlite/SQLiteFileSystemWin.cpp" ] | 80 sources += [ "sqlite/SQLiteFileSystemWin.cpp" ] |
| 77 } else if (is_posix) { | 81 } else if (is_posix) { |
| 78 sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ] | 82 sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ] |
| 79 } | 83 } |
| 80 } | 84 } |
| OLD | NEW |