-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create dartdoc snapshot, add to dart-sdk. Also add resources needed t…
…o run dartdoc from the sdk. BUG= [email protected] Review URL: https://codereview.chromium.org//1295073003 .
- Loading branch information
Showing
6 changed files
with
136 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | ||
# for details. All rights reserved. Use of this source code is governed by a | ||
# BSD-style license that can be found in the LICENSE file. | ||
|
||
# Run dart_style/bin/format.dart on the Dart VM. This script assumes the Dart | ||
# SDK's directory structure. | ||
|
||
function follow_links() { | ||
file="$1" | ||
while [ -h "$file" ]; do | ||
# On Mac OS, readlink -f doesn't work. | ||
file="$(readlink "$file")" | ||
done | ||
echo "$file" | ||
} | ||
|
||
# Unlike $0, $BASH_SOURCE points to the absolute path of this file. | ||
PROG_NAME="$(follow_links "$BASH_SOURCE")" | ||
|
||
# Handle the case where dart-sdk/bin has been symlinked to. | ||
BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" | ||
SDK_DIR="$(cd "${BIN_DIR}/.." ; pwd -P)" | ||
|
||
SNAPSHOT="$BIN_DIR/snapshots/dartdoc.dart.snapshot" | ||
|
||
# We are running the snapshot in the built SDK. | ||
DART="$BIN_DIR/dart" | ||
exec "$DART" --packages="$BIN_DIR/snapshots/resources/dartdoc/.packages" "$SNAPSHOT" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
@echo off | ||
REM Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | ||
REM for details. All rights reserved. Use of this source code is governed by a | ||
REM BSD-style license that can be found in the LICENSE file. | ||
|
||
setlocal | ||
rem Handle the case where dart-sdk/bin has been symlinked to. | ||
set DIR_NAME_WITH_SLASH=%~dp0 | ||
set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%% | ||
call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR | ||
rem Get rid of surrounding quotes. | ||
for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi | ||
|
||
set DART=%BIN_DIR%\dart | ||
set SNAPSHOT=%BIN_DIR%\snapshots\dartdoc.dart.snapshot | ||
|
||
"%DART%" --packages="$BIN_DIR/snapshots/resources/dartdoc/.packages" "%SNAPSHOT%" %* | ||
|
||
endlocal | ||
|
||
exit /b %errorlevel% | ||
|
||
rem Follow the symbolic links (junctions points) using `dir to determine the | ||
rem canonical path. Output with a link looks something like this | ||
rem | ||
rem 01/03/2013 10:11 PM <JUNCTION> abc def | ||
rem [c:\dart_bleeding\dart-repo.9\dart\build\ReleaseIA32\dart-sdk] | ||
rem | ||
rem So in the output of 'dir /a:l "targetdir"' we are looking for a filename | ||
rem surrounded by right angle bracket and left square bracket. Once we get | ||
rem the filename, which is name of the link, we recursively follow that. | ||
:follow_links | ||
setlocal | ||
for %%i in (%1) do set result=%%~fi | ||
set current= | ||
for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^ | ||
^| find "> %~n1 ["`) do ( | ||
set current=%%i | ||
) | ||
if not "%current%"=="" call :follow_links "%current%", result | ||
endlocal & set %~2=%result% | ||
goto :eof | ||
|
||
:end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | ||
# for details. All rights reserved. Use of this source code is governed by a | ||
# BSD-style license that can be found in the LICENSE file. | ||
|
||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'dartdoc', | ||
'type': 'none', | ||
'dependencies': [ | ||
'../../runtime/dart-runtime.gyp:dart', | ||
'../../pkg/pkg.gyp:pkg_packages', | ||
], | ||
'actions': [ | ||
{ | ||
'action_name': 'generate_dartdoc_snapshot', | ||
'inputs': [ | ||
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | ||
'../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart', | ||
'<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | ||
'<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../third_party/pkg/dartdoc"])', | ||
], | ||
'outputs': [ | ||
'<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', | ||
], | ||
'action': [ | ||
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | ||
'--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', | ||
'--package-root=<(PRODUCT_DIR)/packages/', | ||
'../../third_party/pkg/dartdoc/bin/dartdoc.dart', | ||
], | ||
}, | ||
], | ||
}, | ||
], | ||
} |