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

Unified Diff: webkit/glue/webkit_glue.gypi

Issue 17472006: Move webkit_resources / webkit_strings targets out of webkit_support.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « webkit/common/webkit_common.gypi ('k') | webkit/webkit_resources.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkit_glue.gypi
diff --git a/webkit/glue/webkit_glue.gypi b/webkit/glue/webkit_glue.gypi
index 4b764a0fdefe913687c1393a4991910210f409c8..5779fd6f281f602f02b9b7def3933dea3d57fceb 100644
--- a/webkit/glue/webkit_glue.gypi
+++ b/webkit/glue/webkit_glue.gypi
@@ -11,51 +11,6 @@
},
'targets': [
{
- 'target_name': 'webkit_resources',
- 'type': 'none',
- 'variables': {
- 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/webkit',
- },
- 'actions': [
- {
- 'action_name': 'webkit_resources',
- 'variables': {
- 'grit_grd_file': 'resources/webkit_resources.grd',
- },
- 'includes': [ '../../build/grit_action.gypi' ],
- },
- {
- 'action_name': 'webkit_chromium_resources',
- 'variables': {
- 'grit_grd_file': '../../third_party/WebKit/Source/WebKit/chromium/WebKit.grd',
- },
- 'includes': [ '../../build/grit_action.gypi' ],
- },
- ],
- 'includes': [ '../../build/grit_target.gypi' ],
- 'direct_dependent_settings': {
- 'include_dirs': [ '<(grit_out_dir)' ],
- },
- },
- {
- 'target_name': 'webkit_strings',
- 'type': 'none',
- 'variables': {
- 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/webkit',
- },
- 'actions': [
- {
- 'action_name': 'webkit_strings',
- 'variables': {
- 'grit_grd_file': 'webkit_strings.grd',
- },
- 'includes': [ '../../build/grit_action.gypi' ],
- },
- ],
- 'includes': [ '../../build/grit_target.gypi' ],
- },
-
- {
'target_name': 'glue_child',
'type': '<(component)',
'variables': { 'enable_wexit_time_destructors': 1, },
@@ -260,12 +215,12 @@
'<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_support',
'<(DEPTH)/webkit/storage_browser.gyp:webkit_storage_browser',
'<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common',
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_resources',
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_strings',
'glue_common',
'plugins',
'webkit_common',
'webkit_media',
- 'webkit_resources',
- 'webkit_strings',
],
'include_dirs': [
'<(INTERMEDIATE_DIR)',
@@ -332,6 +287,29 @@
}],
],
},
+
+# TODO(jamesr): These temporary targets exist only for DumpRenderTree.gyp in the blink repo.
+ {
+ 'target_name': 'webkit_resources',
+ 'type': 'none',
+ 'dependencies': [
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_resources',
+ ],
+ 'export_dependent_settings': [
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_resources',
+ ],
+ },
+
+ {
+ 'target_name': 'webkit_strings',
+ 'type': 'none',
+ 'dependencies': [
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_strings',
+ ],
+ 'export_dependent_settings': [
+ '<(DEPTH)/webkit/webkit_resources.gyp:webkit_temp_strings',
+ ],
+ },
],
'conditions': [
['use_third_party_translations==1', {
« no previous file with comments | « webkit/common/webkit_common.gypi ('k') | webkit/webkit_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698