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

Unified Diff: webkit/config.gyp

Issue 212003: Upstreamings parts of webkit.gyp (step 1) (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/features.gypi » ('j') | webkit/javascriptcore.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/config.gyp
diff --git a/webkit/config.gyp b/webkit/config.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..71e780a3ed7b5353c5e78cd70761d6e3e95caf1f
--- /dev/null
+++ b/webkit/config.gyp
@@ -0,0 +1,40 @@
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
Mark Mentovai 2009/09/17 17:56:26 Remember to do a follow-up to set svn:eol-style if
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'includes': [
+ 'features.gypi',
+ ],
+ 'targets': [
+ {
+ # This target creates config.h suitable for a WebKit-V8 build and
+ # copies a few other files around as needed.
+ 'target_name': 'config',
+ 'type': 'none',
+ 'msvs_guid': '2E2D3301-2EC4-4C0F-B889-87073B30F673',
+ 'direct_dependent_settings': {
+ 'defines': [
+ '<@(feature_defines)',
+ '<@(non_feature_defines)',
+ ],
+ },
+ 'conditions': [
+ ['OS=="win"', {
+ 'dependencies': ['../build/win/system.gyp:cygwin'],
+ 'direct_dependent_settings': {
+ 'defines': [
+ '__STD_C',
+ '_CRT_SECURE_NO_DEPRECATE',
+ '_SCL_SECURE_NO_DEPRECATE',
+ ],
+ 'include_dirs': [
+ '../third_party/WebKit/JavaScriptCore/os-win32',
+ 'build/JavaScriptCore',
+ ],
+ },
+ }],
+ ],
+ },
+ ], # targets
+}
« no previous file with comments | « no previous file | webkit/features.gypi » ('j') | webkit/javascriptcore.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698