OLD | NEW |
| (Empty) |
1 # Copyright 2013 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 'variables': { | |
7 'enable_wexit_time_destructors': 1, | |
8 'chromium_code': 1 | |
9 }, | |
10 'targets': [ | |
11 { | |
12 # GN version: //webkit/common:common", | |
13 'target_name': 'webkit_common', | |
14 'type': '<(component)', | |
15 'defines': [ | |
16 'WEBKIT_COMMON_IMPLEMENTATION', | |
17 ], | |
18 'dependencies': [ | |
19 '../../base/base.gyp:base', | |
20 '../../url/url.gyp:url_lib', | |
21 ], | |
22 'sources': [ | |
23 'data_element.cc', | |
24 'data_element.h', | |
25 'webkit_common_export.h', | |
26 ], | |
27 }, | |
28 ], | |
29 } | |
OLD | NEW |