diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 17:25:00 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 17:25:00 +0000 |
commit | 37a625a6cefff0972bc95d2add8a797a37dbb3f9 (patch) | |
tree | 43e4b5f31e2d44b6a456fee666b3988d4b2f212d /o3d/import/import.gyp | |
parent | e6060447254932d459c6c6fa6061c11a01432c7d (diff) | |
download | chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.zip chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.tar.gz chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.tar.bz2 |
This adds in targets for selenium and updated several other problems,
including some problems with the samples and idl generation.
Selenium targets launch selenium on all platforms, but the tests don't
pass anywhere but Windows yet because the plugin isn't found.
I'll work on that next.
Review URL: http://codereview.chromium.org/197014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25467 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/import/import.gyp')
-rw-r--r-- | o3d/import/import.gyp | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/o3d/import/import.gyp b/o3d/import/import.gyp index 01d3dc3..3dc94b3 100644 --- a/o3d/import/import.gyp +++ b/o3d/import/import.gyp @@ -37,8 +37,6 @@ 'cross/collada.h', 'cross/collada_zip_archive.cc', 'cross/collada_zip_archive.h', - 'cross/destination_buffer.cc', - 'cross/destination_buffer.h', 'cross/file_output_stream_processor.cc', 'cross/file_output_stream_processor.h', 'cross/precompile.h', @@ -51,6 +49,13 @@ ], 'conditions' : [ + ['renderer == "gl"', + { + 'dependencies': [ + '../build/libs.gyp:cg_libs', + ], + }, + ], ['renderer == "d3d9" and OS == "win"', { 'include_dirs': [ @@ -87,6 +92,13 @@ ], 'include_dirs': [ '../../third_party/glew/files/include', + '/usr/include/cairo', + '/usr/include/glib-2.0', + '/usr/include/gtk-2.0', + '/usr/include/pango-1.0', + '/usr/lib/glib-2.0/include', + '/usr/lib/gtk-2.0/include', + '/usr/include/atk-1.0', ], }, ], @@ -97,8 +109,11 @@ 'type': 'static_library', 'sources': [ 'cross/camera_info.cc', + 'cross/camera_info.h', 'cross/destination_buffer.cc', + 'cross/destination_buffer.h', 'cross/json_object.cc', + 'cross/json_object.h', ], }, { |