Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: webkit/config.gyp

Issue 208029: Upstreamings parts of webkit.gyp (step 2) (Closed)
Patch Set: removed hash Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/test/perf/url_parse_perftest.cc ('k') | webkit/features.gypi » ('j') | webkit/webcore.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698