summaryrefslogtreecommitdiffstats
path: root/o3d/build/select_dependencies.py
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/build/select_dependencies.py')
-rw-r--r--o3d/build/select_dependencies.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/o3d/build/select_dependencies.py b/o3d/build/select_dependencies.py
index a69afe2..d9fb546 100644
--- a/o3d/build/select_dependencies.py
+++ b/o3d/build/select_dependencies.py
@@ -15,20 +15,3 @@ if has_assets:
else:
print "o3d_minimal.gyp"
sys.exit(0)
-#!/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.
-
-"""This file selects which of the sets of dependencies are used
- when Chrome includes o3d.gyp"""
-
-import os.path
-import sys
-
-has_assets = os.path.exists(os.path.join("..", "o3d_assets"))
-if has_assets:
- print "o3d_all.gyp"
-else:
- print "o3d_minimal.gyp"
-sys.exit(0)