OLD | NEW |
| (Empty) |
1 # Copyright (c) 2009 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 'includes': [ | |
7 'features.gypi', | |
8 ], | |
9 'targets': [ | |
10 { | |
11 # This target creates config.h suitable for a WebKit-V8 build and | |
12 # copies a few other files around as needed. | |
13 'target_name': 'config', | |
14 'type': 'none', | |
15 'msvs_guid': '2E2D3301-2EC4-4C0F-B889-87073B30F673', | |
16 'direct_dependent_settings': { | |
17 'defines': [ | |
18 '<@(feature_defines)', | |
19 '<@(non_feature_defines)', | |
20 ], | |
21 }, | |
22 'conditions': [ | |
23 ['OS=="win"', { | |
24 'dependencies': ['../build/win/system.gyp:cygwin'], | |
25 'direct_dependent_settings': { | |
26 'defines': [ | |
27 '__STD_C', | |
28 '_CRT_SECURE_NO_DEPRECATE', | |
29 '_SCL_SECURE_NO_DEPRECATE', | |
30 ], | |
31 'include_dirs': [ | |
32 '../third_party/WebKit/JavaScriptCore/os-win32', | |
33 'build/JavaScriptCore', | |
34 ], | |
35 }, | |
36 }], | |
37 ], | |
38 }, | |
39 ], # targets | |
40 } | |
OLD | NEW |