OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'dom_storage', | 8 'target_name': 'dom_storage', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
11 'dependencies': [ | 11 'dependencies': [ |
12 '<(DEPTH)/base/base.gyp:base', | 12 '<(DEPTH)/base/base.gyp:base', |
13 '<(DEPTH)/sql/sql.gyp:sql', | 13 '<(DEPTH)/sql/sql.gyp:sql', |
14 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 14 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
15 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 15 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
16 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', | 16 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'dom_storage_area.cc', | 19 'dom_storage_area.cc', |
20 'dom_storage_area.h', | 20 'dom_storage_area.h', |
21 'dom_storage_cached_area.cc', | 21 'dom_storage_cached_area.cc', |
22 'dom_storage_cached_area.h', | 22 'dom_storage_cached_area.h', |
23 'dom_storage_context.cc', | 23 'dom_storage_context.cc', |
24 'dom_storage_context.h', | 24 'dom_storage_context.h', |
25 'dom_storage_database.cc', | 25 'dom_storage_database.cc', |
26 'dom_storage_database.h', | 26 'dom_storage_database.h', |
| 27 'dom_storage_database_adapter.cc', |
| 28 'dom_storage_database_adapter.h', |
27 'dom_storage_host.cc', | 29 'dom_storage_host.cc', |
28 'dom_storage_host.h', | 30 'dom_storage_host.h', |
29 'dom_storage_map.cc', | 31 'dom_storage_map.cc', |
30 'dom_storage_map.h', | 32 'dom_storage_map.h', |
31 'dom_storage_namespace.cc', | 33 'dom_storage_namespace.cc', |
32 'dom_storage_namespace.h', | 34 'dom_storage_namespace.h', |
33 'dom_storage_proxy.h', | 35 'dom_storage_proxy.h', |
34 'dom_storage_session.cc', | 36 'dom_storage_session.cc', |
35 'dom_storage_session.h', | 37 'dom_storage_session.h', |
36 'dom_storage_task_runner.cc', | 38 'dom_storage_task_runner.cc', |
37 'dom_storage_task_runner.h', | 39 'dom_storage_task_runner.h', |
38 'dom_storage_types.h', | 40 'dom_storage_types.h', |
| 41 'local_storage_database_adapter.cc', |
| 42 'local_storage_database_adapter.h', |
39 'session_storage_database.cc', | 43 'session_storage_database.cc', |
40 'session_storage_database.h' | 44 'session_storage_database.h', |
| 45 'session_storage_database_adapter.cc', |
| 46 'session_storage_database_adapter.h', |
41 ], | 47 ], |
42 'conditions': [ | 48 'conditions': [ |
43 ['inside_chromium_build==0', { | 49 ['inside_chromium_build==0', { |
44 'dependencies': [ | 50 'dependencies': [ |
45 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 51 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
46 ], | 52 ], |
47 }], | 53 }], |
48 ], | 54 ], |
49 }, | 55 }, |
50 ], | 56 ], |
51 } | 57 } |
OLD | NEW |