Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: webkit/dom_storage/webkit_dom_storage.gypi

Issue 10176005: Add dom_storage::SessionStorageDatabase. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/sqlite/sqlite.gyp:sqlite', 15 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
15 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', 16 '<(DEPTH)/webkit/support/webkit_support.gyp:quota',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 'dom_storage_area.cc', 19 'dom_storage_area.cc',
19 'dom_storage_area.h', 20 'dom_storage_area.h',
20 'dom_storage_context.cc', 21 'dom_storage_context.cc',
21 'dom_storage_context.h', 22 'dom_storage_context.h',
22 'dom_storage_database.cc', 23 'dom_storage_database.cc',
23 'dom_storage_database.h', 24 'dom_storage_database.h',
24 'dom_storage_host.cc', 25 'dom_storage_host.cc',
25 'dom_storage_host.h', 26 'dom_storage_host.h',
26 'dom_storage_map.cc', 27 'dom_storage_map.cc',
27 'dom_storage_map.h', 28 'dom_storage_map.h',
28 'dom_storage_namespace.cc', 29 'dom_storage_namespace.cc',
29 'dom_storage_namespace.h', 30 'dom_storage_namespace.h',
30 'dom_storage_session.cc', 31 'dom_storage_session.cc',
31 'dom_storage_session.h', 32 'dom_storage_session.h',
32 'dom_storage_task_runner.cc', 33 'dom_storage_task_runner.cc',
33 'dom_storage_task_runner.h', 34 'dom_storage_task_runner.h',
34 'dom_storage_types.h', 35 'dom_storage_types.h',
36 'session_storage_database.cc',
37 'session_storage_database.h'
35 ], 38 ],
36 'conditions': [ 39 'conditions': [
37 ['inside_chromium_build==0', { 40 ['inside_chromium_build==0', {
38 'dependencies': [ 41 'dependencies': [
39 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 42 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
40 ], 43 ],
41 }], 44 }],
42 ], 45 ],
43 }, 46 },
44 ], 47 ],
45 } 48 }
OLDNEW
« no previous file with comments | « webkit/dom_storage/session_storage_database_unittest.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698