| 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 21 matching lines...) Expand all  Loading... | 
| 32     "DatabaseTracker.h", | 32     "DatabaseTracker.h", | 
| 33     "InspectorDatabaseAgent.cpp", | 33     "InspectorDatabaseAgent.cpp", | 
| 34     "InspectorDatabaseAgent.h", | 34     "InspectorDatabaseAgent.h", | 
| 35     "InspectorDatabaseResource.cpp", | 35     "InspectorDatabaseResource.cpp", | 
| 36     "InspectorDatabaseResource.h", | 36     "InspectorDatabaseResource.h", | 
| 37     "QuotaTracker.cpp", | 37     "QuotaTracker.cpp", | 
| 38     "QuotaTracker.h", | 38     "QuotaTracker.h", | 
| 39     "SQLError.cpp", | 39     "SQLError.cpp", | 
| 40     "SQLError.h", | 40     "SQLError.h", | 
| 41     "SQLResultSet.cpp", | 41     "SQLResultSet.cpp", | 
|  | 42     "SQLResultSet.h", | 
| 42     "SQLResultSetRowList.cpp", | 43     "SQLResultSetRowList.cpp", | 
|  | 44     "SQLResultSetRowList.h", | 
| 43     "SQLStatement.cpp", | 45     "SQLStatement.cpp", | 
| 44     "SQLStatement.h", | 46     "SQLStatement.h", | 
| 45     "SQLStatementBackend.cpp", | 47     "SQLStatementBackend.cpp", | 
| 46     "SQLStatementBackend.h", | 48     "SQLStatementBackend.h", | 
| 47     "SQLTransaction.cpp", | 49     "SQLTransaction.cpp", | 
| 48     "SQLTransaction.h", | 50     "SQLTransaction.h", | 
| 49     "SQLTransactionBackend.cpp", | 51     "SQLTransactionBackend.cpp", | 
| 50     "SQLTransactionBackend.h", | 52     "SQLTransactionBackend.h", | 
| 51     "SQLTransactionClient.cpp", | 53     "SQLTransactionClient.cpp", | 
| 52     "SQLTransactionClient.h", | 54     "SQLTransactionClient.h", | 
| 53     "SQLTransactionCoordinator.cpp", | 55     "SQLTransactionCoordinator.cpp", | 
| 54     "SQLTransactionCoordinator.h", | 56     "SQLTransactionCoordinator.h", | 
| 55     "SQLTransactionState.h", | 57     "SQLTransactionState.h", | 
| 56     "SQLTransactionStateMachine.cpp", | 58     "SQLTransactionStateMachine.cpp", | 
| 57     "SQLTransactionStateMachine.h", | 59     "SQLTransactionStateMachine.h", | 
| 58     "StorageLog.h", | 60     "StorageLog.h", | 
| 59     "sqlite/SQLLog.h", | 61     "sqlite/SQLLog.h", | 
| 60     "sqlite/SQLValue.cpp", | 62     "sqlite/SQLValue.cpp", | 
|  | 63     "sqlite/SQLValue.h", | 
| 61     "sqlite/SQLiteAuthorizer.cpp", | 64     "sqlite/SQLiteAuthorizer.cpp", | 
| 62     "sqlite/SQLiteDatabase.cpp", | 65     "sqlite/SQLiteDatabase.cpp", | 
| 63     "sqlite/SQLiteDatabase.h", | 66     "sqlite/SQLiteDatabase.h", | 
| 64     "sqlite/SQLiteFileSystem.cpp", | 67     "sqlite/SQLiteFileSystem.cpp", | 
| 65     "sqlite/SQLiteFileSystem.h", | 68     "sqlite/SQLiteFileSystem.h", | 
| 66     "sqlite/SQLiteStatement.cpp", | 69     "sqlite/SQLiteStatement.cpp", | 
| 67     "sqlite/SQLiteStatement.h", | 70     "sqlite/SQLiteStatement.h", | 
| 68     "sqlite/SQLiteTransaction.cpp", | 71     "sqlite/SQLiteTransaction.cpp", | 
| 69     "sqlite/SQLiteTransaction.h", | 72     "sqlite/SQLiteTransaction.h", | 
| 70   ] | 73   ] | 
| 71 | 74 | 
| 72   if (is_win) { | 75   if (is_win) { | 
| 73     sources += [ "sqlite/SQLiteFileSystemWin.cpp" ] | 76     sources += [ "sqlite/SQLiteFileSystemWin.cpp" ] | 
| 74   } else if (is_posix) { | 77   } else if (is_posix) { | 
| 75     sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ] | 78     sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ] | 
| 76   } | 79   } | 
| 77 } | 80 } | 
| OLD | NEW | 
|---|