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

Unified Diff: webkit/support/webkit_support.gypi

Issue 8226018: Extract an independent webkit_support_gfx target. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 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
Index: webkit/support/webkit_support.gypi
diff --git a/webkit/support/webkit_support.gypi b/webkit/support/webkit_support.gypi
index 4ef4b25161f5b329f64ded76e6fce11182112f85..9783ce6a67cc9f55446051d2507312a9b44d4ebe 100644
--- a/webkit/support/webkit_support.gypi
+++ b/webkit/support/webkit_support.gypi
@@ -83,6 +83,7 @@
'<(DEPTH)/skia/skia.gyp:skia',
'<(DEPTH)/ui/ui.gyp:ui',
'glue',
+ 'webkit_support_gfx',
],
'export_dependent_settings': [
'<(DEPTH)/base/base.gyp:base',
@@ -113,8 +114,6 @@
'<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h',
'simple_database_system.cc',
'simple_database_system.h',
- 'webkit_support_gfx.h',
- 'webkit_support_gfx.cc',
],
'conditions': [
['inside_chromium_build==0', {
@@ -124,5 +123,25 @@
}],
],
},
+
+ {
+ 'target_name': 'webkit_support_gfx',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
+ ],
+ 'sources': [
+ 'webkit_support_gfx.h',
+ 'webkit_support_gfx.cc',
+ ],
+ 'include_dirs': [
+ '../..',
tony 2011/10/12 16:50:48 use '<(DEPTH)' instead.
HaoZheng 2011/10/13 03:16:02 Done.
+ ],
+ 'conditions': [
+ ['OS=="android"', {
+ 'toolsets': ['target', 'host'],
+ }],
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698