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

Unified Diff: utils/apidoc/apidoc.gyp

Issue 10091010: Fix apidoc build step on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc.gyp
diff --git a/utils/apidoc/apidoc.gyp b/utils/apidoc/apidoc.gyp
index 5ce55f83ab543ca565bd7755f5adf4a5cefb89c9..aafad1e1c8ddcebdd46d06cc69a26241a5651521 100644
--- a/utils/apidoc/apidoc.gyp
+++ b/utils/apidoc/apidoc.gyp
@@ -3,6 +3,11 @@
# BSD-style license that can be found in the LICENSE file.
{
+ 'variables': {
+ # These variables are used in the creation of the .vcproj file on
+ # Windows.
+ 'cygwin_dir': '../../third_party/cygwin',
+ },
'targets': [
{
'target_name': 'api_docs',
@@ -11,6 +16,11 @@
'../../frog/dart-frog.gyp:frog',
'../../runtime/dart-runtime.gyp:dart',
],
+ 'conditions': [
+ ['OS=="win"', {
+ 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
+ }],
+ ],
'actions': [
{
'action_name': 'run_apidoc',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698