Index: platform_tools/android/gyp/dependencies.gypi |
diff --git a/platform_tools/android/gyp/dependencies.gypi b/platform_tools/android/gyp/dependencies.gypi |
index 86cc524b58b277e054668b4430b995d09fda1727..14f73bf1abae6c7e59f608969eb14f4301850cd9 100644 |
--- a/platform_tools/android/gyp/dependencies.gypi |
+++ b/platform_tools/android/gyp/dependencies.gypi |
@@ -121,39 +121,5 @@ |
], |
}, |
}, |
- { |
- # This target is a dependency for VisualBench application which runs on |
- # Android. Since Android requires us to load native code in shared |
- # libraries, we need a common entry point to wrap around main(). Here |
- # we also change the type of all would-be executables to be shared |
- # libraries. The alternative would be to introduce a condition in every |
- # executable target which changes to a shared library if the target OS is |
- # Android. This is nicer because the switch is in one place. |
- 'target_name': 'Android_VisualBench', |
- 'type': 'static_library', |
- 'direct_dependent_settings': { |
- 'target_conditions': [ |
- # '_type' is an 'automatic variable' which is defined for any |
- # target which defines a key-value pair with 'type' as the key (so, |
- # all of them). Conditionals inside 'target_conditions' are evaluated |
- # *after* all other definitions and conditionals are evaluated, so |
- # we're guaranteed that '_type' will be defined when we get here. |
- # For more info, see: |
- # - http://code.google.com/p/gyp/wiki/InputFormatReference#Variables |
- # - http://codereview.appspot.com/6353065/ |
- ['_type == "executable"', { |
- 'type': 'shared_library', |
- }], |
- ], |
- 'include_dirs': [ |
- '../../../tools/timer/', |
- '../../../tools/VisualBench/', |
- ], |
- 'sources': [ |
- '../apps/visualbench/src/main/jni/SkOSWindow_AndroidNative.cpp', |
- '../apps/visualbench/src/main/jni/main.cpp', |
- ], |
- }, |
- }, |
] |
} |