summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-06 21:33:46 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-06 21:33:46 +0000
commit40c3f52941c7aeb960fda325c952874951eadf7d (patch)
tree4c423a17fc25e4410ac5615411b27e1eb12e36b0 /base
parentdc7588ee74d08438c6475cc0202516a7f2a51b0e (diff)
downloadchromium_src-40c3f52941c7aeb960fda325c952874951eadf7d.zip
chromium_src-40c3f52941c7aeb960fda325c952874951eadf7d.tar.gz
chromium_src-40c3f52941c7aeb960fda325c952874951eadf7d.tar.bz2
Build test_shell and test_shell_tests on Linux from gyp-generated scons files:
* Catch up to recent changes: * Rename RenderThemeChromiumGtk.cpp to RenderThemeChromiumLinux.cpp. * Fix spelling of V*NPObject.{cpp,h} * Explicitly include varions WebCore *Gtk.cpp and *Linux.cpp files that are excluded by the general regular expression. * Add webinput_event_util.cc. * Exclude glue/plugins/plugin_stubs.cc. * Add a Linux test_shell_resources target to build test_shell_resources.{h,pak}. * Add an explicit test_shell action to repack resources into test_shell.pak. * Use -Wno-multichar when building libtest_shell_common.a. * Use -DWTF_USE_PTHREADS when building libwtf.a, and when dependent targets compile against it. * Use tools/test_shell/test_shell_main{,_GYP}.scons as the main entry point for GYP-based builds of webkit. * Add base/gfx/gtk_util.cc to the base build. Review URL: http://codereview.chromium.org/39219 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11160 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/base.gyp11
1 files changed, 9 insertions, 2 deletions
diff --git a/base/base.gyp b/base/base.gyp
index 17ca9ce..e647911 100644
--- a/base/base.gyp
+++ b/base/base.gyp
@@ -379,6 +379,8 @@
'sources': [
'gfx/gdi_util.cc',
'gfx/gdi_util.h',
+ 'gfx/gtk_util.cc',
+ 'gfx/gtk_util.h',
'gfx/jpeg_codec.cc',
'gfx/jpeg_codec.h',
'gfx/native_theme.cc',
@@ -415,8 +417,13 @@
],
'conditions': [
[ 'OS != "win"', { 'sources!': [
- 'gfx/gdi_util.cc',
- 'gfx/native_theme.cc' ]
+ 'gfx/gdi_util.cc',
+ 'gfx/native_theme.cc',
+ ],
+ }],
+ [ 'OS != "linux"', { 'sources!': [
+ 'gfx/gtk_util.cc',
+ ],
}],
],
},