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

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

Issue 9159020: Create a class to represent a DOM Storage Database. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed a couple of things I noticed :) Created 8 years, 10 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'dom_storage',
9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/sql/sql.gyp:sql',
14 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
15 '<(DEPTH)/webkit/support/webkit_support.gyp:quota',
16 ],
17 'sources': [
18 'dom_storage_database.h',
19 'dom_storage_database.cc',
20 ],
21 'conditions': [
22 ['inside_chromium_build==0', {
23 'dependencies': [
24 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
25 ],
26 }],
27 ],
28 },
29 ],
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698