| 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': '<(component)', | 9 'type': '<(component)', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 'defines': ['DOM_STORAGE_IMPLEMENTATION'], | 11 'defines': ['DOM_STORAGE_IMPLEMENTATION'], |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '<(DEPTH)/base/base.gyp:base', | 13 '<(DEPTH)/base/base.gyp:base', |
| 14 '<(DEPTH)/sql/sql.gyp:sql', | 14 '<(DEPTH)/sql/sql.gyp:sql', |
| 15 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 15 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 16 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 16 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 17 '<(DEPTH)/webkit/support/webkit_support.gyp:database', | 17 '<(DEPTH)/webkit/support/webkit_support.gyp:database', |
| 18 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', | 18 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', |
| 19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 20 'fileapi', | |
| 21 'glue', | 20 'glue', |
| 21 'webkit_storage', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'dom_storage_area.cc', | 24 'dom_storage_area.cc', |
| 25 'dom_storage_area.h', | 25 'dom_storage_area.h', |
| 26 'dom_storage_cached_area.cc', | 26 'dom_storage_cached_area.cc', |
| 27 'dom_storage_cached_area.h', | 27 'dom_storage_cached_area.h', |
| 28 'dom_storage_context.cc', | 28 'dom_storage_context.cc', |
| 29 'dom_storage_context.h', | 29 'dom_storage_context.h', |
| 30 'dom_storage_database.cc', | 30 'dom_storage_database.cc', |
| 31 'dom_storage_database.h', | 31 'dom_storage_database.h', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 53 'conditions': [ | 53 'conditions': [ |
| 54 ['inside_chromium_build==0', { | 54 ['inside_chromium_build==0', { |
| 55 'dependencies': [ | 55 'dependencies': [ |
| 56 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 56 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 57 ], | 57 ], |
| 58 }], | 58 }], |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 ], | 61 ], |
| 62 } | 62 } |
| OLD | NEW |