diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 23:45:00 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 23:45:00 +0000 |
commit | 91331289a995eef199a0f3d715f306b3b92a1e6b (patch) | |
tree | e75abcc0be29691df13fc87b56e53e2b2c1fbe26 /o3d/build | |
parent | 04d4d5433e517210c77fcd0bccaba76a0de57e66 (diff) | |
download | chromium_src-91331289a995eef199a0f3d715f306b3b92a1e6b.zip chromium_src-91331289a995eef199a0f3d715f306b3b92a1e6b.tar.gz chromium_src-91331289a995eef199a0f3d715f306b3b92a1e6b.tar.bz2 |
This adds splitting of samples for the interactive sampler,
and docs building to the GYP build.
Review URL: http://codereview.chromium.org/159825
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/build')
-rw-r--r-- | o3d/build/all.gyp | 3 | ||||
-rw-r--r-- | o3d/build/file_exists.py | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/o3d/build/all.gyp b/o3d/build/all.gyp index bda0373..775dc0b 100644 --- a/o3d/build/all.gyp +++ b/o3d/build/all.gyp @@ -21,14 +21,15 @@ '../converter/converter.gyp:o3dConverter', '../core/core.gyp:o3dCore', '../core/core.gyp:o3dCorePlatform', + '../documentation/documentation.gyp:*', '../import/archive.gyp:o3dArchive', '../import/import.gyp:o3dImport', '../plugin/idl/idl.gyp:o3dPluginIdl', '../plugin/plugin.gyp:add_version', '../plugin/plugin.gyp:npo3dautoplugin', '../plugin/plugin.gyp:o3dPluginLogging', - '../serializer/serializer.gyp:o3dSerializer', '../samples/samples.gyp:*', + '../serializer/serializer.gyp:o3dSerializer', '../statsreport/statsreport.gyp:o3dStatsReport', '../tests/tests.gyp:unit_tests', '../utils/utils.gyp:o3dUtils', diff --git a/o3d/build/file_exists.py b/o3d/build/file_exists.py new file mode 100644 index 0000000..6f6abb2 --- /dev/null +++ b/o3d/build/file_exists.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os.path
+import sys
+
+sys.stdout.write(str(os.path.exists(sys.argv[1])))
+sys.exit(0)
|