diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 02:46:32 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 02:46:32 +0000 |
commit | 745945afe8e9fbfad7bb9ed442143172bf690073 (patch) | |
tree | 770e9c5f61e1204221fb4c2887cb863ad8b6688f /native_client_sdk/src/examples/index.html | |
parent | f0953ccbeb01a7a4ed1daa3cb84c2bc42adbed1f (diff) | |
download | chromium_src-745945afe8e9fbfad7bb9ed442143172bf690073.zip chromium_src-745945afe8e9fbfad7bb9ed442143172bf690073.tar.gz chromium_src-745945afe8e9fbfad7bb9ed442143172bf690073.tar.bz2 |
Adding reduced version of sdk at 1387 to chrome tree.
BUG=None
TEST=None
R=noelallen@google.com
TBR
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk/src/examples/index.html')
-rw-r--r-- | native_client_sdk/src/examples/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/native_client_sdk/src/examples/index.html b/native_client_sdk/src/examples/index.html new file mode 100644 index 0000000..3d72c28 --- /dev/null +++ b/native_client_sdk/src/examples/index.html @@ -0,0 +1,51 @@ +<!-- + Copyright (c) 2011 The Native Client Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. +--> + +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<style type="text/css"> +dt { + font-weight: bold; +} +dd { + margin-bottom: 12pt; + width: 600px; +} +</style> +<link href="http://code.google.com/css/codesite.css" rel="stylesheet" + type="text/css" /> +<title>Native Client Examples</title> +</head> +<body> +<h2>Native Client Examples</h2> +<p>The examples are no longer pre-built in the SDK. To try out the Native +Client examples right now in your Chrome web browser, please see the +<a href="http://www.gonacl.com/dev/sdk.html">SDK page on GoNaCl.com</a> and +download the SDK examples from the +<a href="https://chrome.google.com/webstore/">Chrome Web Store</a>.</p> +<p>If you would like to build and run the examples within the SDK +then run these commands, starting from the examples directory:</p><br /> +<strong>Windows</strong> +<blockquote><code> +cd %NACL_SDK_ROOT%\%NACL_TARGET_PLATFORM%\examples<br /> +scons<br /> +cd %NACL_SDK_ROOT%\staging<br /> +httpd<br /> +</code></blockquote> +<strong>Mac/Linux</strong> +<blockquote><code> +cd $NACL_SDK_ROOT/$NACL_TARGET_PLATFORM/examples<br /> +./scons<br /> +cd $NACL_SDK_ROOT/staging<br /> +./httpd.py<br /> +</code></blockquote> +<p>Happy hacking!</p> +</body> +</html> |