From 91331289a995eef199a0f3d715f306b3b92a1e6b Mon Sep 17 00:00:00 2001 From: "gspencer@google.com" Date: Mon, 3 Aug 2009 23:45:00 +0000 Subject: 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 --- o3d/build/all.gyp | 3 ++- o3d/build/file_exists.py | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 o3d/build/file_exists.py (limited to 'o3d/build') 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) -- cgit v1.1