OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': 'appcache', | 8 'target_name': 'appcache', |
| 9 'variables': { 'enable_wexit_time_destructors': 1, }, |
9 # TODO(dpranke): Uncomment '<(component)', | 10 # TODO(dpranke): Uncomment '<(component)', |
10 # 'type': '<(component)', | 11 # 'type': '<(component)', |
11 'type': 'static_library', | 12 'type': 'static_library', |
12 'defines': [ | 13 'defines': [ |
13 'APPCACHE_IMPLEMENTATION', | 14 'APPCACHE_IMPLEMENTATION', |
14 ], | 15 ], |
15 'dependencies': [ | 16 'dependencies': [ |
16 'quota', | 17 'quota', |
17 '<(DEPTH)/base/base.gyp:base_i18n', | 18 '<(DEPTH)/base/base.gyp:base_i18n', |
18 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 19 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 'conditions': [ | 76 'conditions': [ |
76 ['inside_chromium_build==0', { | 77 ['inside_chromium_build==0', { |
77 'dependencies': [ | 78 'dependencies': [ |
78 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 79 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
79 ], | 80 ], |
80 }], | 81 }], |
81 ], | 82 ], |
82 }, | 83 }, |
83 ], | 84 ], |
84 } | 85 } |
OLD | NEW |