OLD | NEW |
(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_area.cc', |
| 19 'dom_storage_area.h', |
| 20 'dom_storage_context.cc', |
| 21 'dom_storage_context.h', |
| 22 'dom_storage_host.cc', |
| 23 'dom_storage_host.h', |
| 24 'dom_storage_map.cc', |
| 25 'dom_storage_map.h', |
| 26 'dom_storage_namespace.cc', |
| 27 'dom_storage_namespace.h', |
| 28 'dom_storage_session.cc', |
| 29 'dom_storage_session.h', |
| 30 'dom_storage_task_runner.cc', |
| 31 'dom_storage_task_runner.h', |
| 32 'dom_storage_types.h', |
| 33 ], |
| 34 'conditions': [ |
| 35 ['inside_chromium_build==0', { |
| 36 'dependencies': [ |
| 37 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 38 ], |
| 39 }], |
| 40 ], |
| 41 }, |
| 42 ], |
| 43 } |
OLD | NEW |