Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: import/import.gyp

Issue 131116: This adds in the GYP files needed for our GYP build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/cross/types.h ('k') | main.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: import/import.gyp
===================================================================
--- import/import.gyp (revision 0)
+++ import/import.gyp (revision 0)
@@ -0,0 +1,130 @@
+# 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'includes': [
+ '../build/common.gypi',
+ ],
+ 'target_defaults': {
+ 'include_dirs': [
+ '..',
+ '../..',
+ '../../<(cgdir)/include',
+ '../../<(gtestdir)',
+ ],
+ },
+ 'targets': [
+ {
+ 'target_name': 'o3dImport',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../<(antlrdir)/antlr.gyp:antlr3c',
+ '../../<(fcolladadir)/fcollada.gyp:fcollada',
+ '../../<(jpegdir)/libjpeg.gyp:libjpeg',
+ '../../<(pngdir)/libpng.gyp:libpng',
+ '../../<(zlibdir)/zlib.gyp:zlib',
+ '../compiler/technique/technique.gyp:technique',
+ ],
+ 'sources': [
+ 'cross/collada_conditioner.cc',
+ 'cross/collada_conditioner.h',
+ 'cross/collada.cc',
+ 'cross/collada.h',
+ 'cross/collada_zip_archive.cc',
+ 'cross/collada_zip_archive.h',
+ 'cross/file_output_stream_processor.cc',
+ 'cross/file_output_stream_processor.h',
+ 'cross/gz_compressor.cc',
+ 'cross/gz_compressor.h',
+ 'cross/precompile.h',
+ 'cross/tar_generator.cc',
+ 'cross/tar_generator.h',
+ 'cross/tar_processor.h',
+ 'cross/targz_generator.cc',
+ 'cross/targz_generator.h',
+ 'cross/targz_processor.h',
+ 'cross/zip_archive.cc',
+ 'cross/zip_archive.h',
+ ],
+ 'conditions' : [
+ ['renderer == "d3d9" and OS == "win"',
+ {
+ 'include_dirs': [
+ '$(DXSDK_DIR)/Include',
+ ],
+ }
+ ],
+ ['OS == "win"',
+ {
+ 'sources': [
+ 'win/collada_conditioner_win.cc',
+ ],
+ },
+ ],
+ ['OS == "mac"',
+ {
+ 'sources': [
+ 'mac/collada_conditioner_mac.mm',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
+ ],
+ },
+ },
+ ],
+ ['OS == "linux"',
+ {
+ 'sources': [
+ 'linux/collada_conditioner_linux.cc',
+ ],
+ },
+ ],
+ ],
+ },
+ {
+ 'target_name': 'o3dArchive',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../<(antlrdir)/antlr.gyp:antlr3c',
+ '../../<(fcolladadir)/fcollada.gyp:fcollada',
+ '../../<(jpegdir)/libjpeg.gyp:libjpeg',
+ '../../<(pngdir)/libpng.gyp:libpng',
+ '../../<(zlibdir)/zlib.gyp:zlib',
+ ],
+ 'sources': [
+ 'cross/archive_processor.cc',
+ 'cross/archive_processor.h',
+ 'cross/archive_request.cc',
+ 'cross/archive_request.h',
+ 'cross/gz_decompressor.cc',
+ 'cross/gz_decompressor.h',
+ 'cross/iarchive_generator.h',
+ 'cross/memory_buffer.h',
+ 'cross/memory_stream.cc',
+ 'cross/memory_stream.h',
+ 'cross/raw_data.cc',
+ 'cross/raw_data.h',
+ 'cross/tar_generator.h',
+ 'cross/tar_processor.cc',
+ 'cross/tar_processor.h',
+ 'cross/targz_generator.h',
+ 'cross/targz_processor.cc',
+ 'cross/targz_processor.h',
+ ],
+ 'conditions' : [
+ ['renderer == "d3d9" and OS == "win"',
+ {
+ 'include_dirs': [
+ '$(DXSDK_DIR)/Include',
+ ],
+ }
+ ],
+ ],
+ },
+ ],
+}
« no previous file with comments | « core/cross/types.h ('k') | main.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698