| Index: content/content_shell.gypi
|
| diff --git a/content/content_shell.gypi b/content/content_shell.gypi
|
| index 7693c4f4475d6cff3d2dd3f565345e22f72153eb..26813ef76230a24dcbd4a73b238004a6e8c1495e 100644
|
| --- a/content/content_shell.gypi
|
| +++ b/content/content_shell.gypi
|
| @@ -38,14 +38,11 @@
|
| 'content_resources.gyp:content_resources',
|
| 'content_shell_resources',
|
| 'copy_test_netscape_plugin',
|
| - 'layouttest_support_content',
|
| + 'test_support_content',
|
| '../base/base.gyp:base',
|
| - '../base/base.gyp:base_static',
|
| '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
|
| - '../cc/cc.gyp:cc',
|
| '../components/components.gyp:breakpad_component',
|
| '../gin/gin.gyp:gin',
|
| - '../gpu/gpu.gyp:gpu',
|
| '../ipc/ipc.gyp:ipc',
|
| '../media/media.gyp:media',
|
| '../net/net.gyp:net',
|
| @@ -61,14 +58,13 @@
|
| '../url/url.gyp:url_lib',
|
| '../v8/tools/gyp/v8.gyp:v8',
|
| '../webkit/common/webkit_common.gyp:webkit_common',
|
| - '../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_bindings',
|
| - '../webkit/storage_browser.gyp:webkit_storage_browser',
|
| '../webkit/webkit_resources.gyp:webkit_resources',
|
| ],
|
| 'include_dirs': [
|
| '..',
|
| ],
|
| 'sources': [
|
| + 'public/test/layouttest_support.h',
|
| 'shell/android/shell_jni_registrar.cc',
|
| 'shell/android/shell_jni_registrar.h',
|
| 'shell/android/shell_manager.cc',
|
| @@ -245,6 +241,7 @@
|
| 'shell/renderer/test_runner/web_ax_object_proxy.h',
|
| 'shell/renderer/webkit_test_runner.cc',
|
| 'shell/renderer/webkit_test_runner.h',
|
| + 'test/layouttest_support.cc',
|
| ],
|
| 'msvs_settings': {
|
| 'VCLinkerTool': {
|
| @@ -301,6 +298,12 @@
|
| ],
|
| 'dependencies!': [
|
| 'copy_test_netscape_plugin',
|
| + ],
|
| + }, { # else: OS!="android"
|
| + 'dependencies': [
|
| + # This dependency is for running DRT against the content shell, and
|
| + # this combination is not yet supported on Android.
|
| + 'test_support_content',
|
| ],
|
| }], # OS=="android"
|
| ['os_posix == 1 and OS != "mac" and android_webview_build != 1', {
|
| @@ -489,11 +492,7 @@
|
| ],
|
| 'conditions': [
|
| ['OS!="android"', {
|
| - 'variables': {
|
| - 'pak_inputs': [
|
| - '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
|
| - ],
|
| - },
|
| + 'pak_inputs': ['<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',],
|
| 'pak_output': '<(PRODUCT_DIR)/content_shell.pak',
|
| }, {
|
| 'pak_output': '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak',
|
|
|