diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 07:53:57 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 07:53:57 +0000 |
commit | ee75b899c35b74a40603b4699c31eecf7f391c62 (patch) | |
tree | 3a86730fb749574f80cd0f041368781d379f4285 /content/content_shell.gypi | |
parent | f7831bddd10b07de8f6ffba5be384ed8f61bed93 (diff) | |
download | chromium_src-ee75b899c35b74a40603b4699c31eecf7f391c62.zip chromium_src-ee75b899c35b74a40603b4699c31eecf7f391c62.tar.gz chromium_src-ee75b899c35b74a40603b4699c31eecf7f391c62.tar.bz2 |
DevTools: add remote debugging capabilities to content_shell.
BUG=97465
TEST=
Review URL: https://chromiumcodereview.appspot.com/9288023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_shell.gypi')
-rw-r--r-- | content/content_shell.gypi | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/content/content_shell.gypi b/content/content_shell.gypi index bfed4b5..fd9cd0b 100644 --- a/content/content_shell.gypi +++ b/content/content_shell.gypi @@ -19,6 +19,7 @@ 'content_plugin', 'content_ppapi_plugin', 'content_renderer', + 'content_shell_resources', 'content_utility', 'content_worker', 'content_resources.gyp:content_resources', @@ -62,6 +63,8 @@ 'shell/shell_content_renderer_client.h', 'shell/shell_content_utility_client.cc', 'shell/shell_content_utility_client.h', + 'shell/shell_devtools_delegate.cc', + 'shell/shell_devtools_delegate.h', 'shell/shell_download_manager_delegate.cc', 'shell/shell_download_manager_delegate.h', 'shell/shell_main_delegate.cc', @@ -106,10 +109,39 @@ ], }, { + 'target_name': 'content_shell_resources', + 'type': 'none', + 'variables': { + 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', + }, + 'actions': [ + { + 'action_name': 'content_shell_resources', + 'variables': { + 'grit_grd_file': 'shell/shell_resources.grd', + }, + 'includes': [ '../build/grit_action.gypi' ], + }, + ], + 'includes': [ '../build/grit_target.gypi' ], + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)', + 'files': [ + '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak' + ], + }, + ], + }, + { # We build a minimal set of resources so WebKit in content_shell has # access to necessary resources. 'target_name': 'content_shell_pak', 'type': 'none', + 'dependencies': [ + 'browser/debugger/devtools_resources.gyp:devtools_resources', + 'content_shell_resources', + ], 'variables': { 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', }, @@ -119,9 +151,11 @@ 'variables': { 'pak_inputs': [ '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', + '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak', '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.pak', '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standard.pak', + '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak', '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', ], |