diff --git a/starboard/android/shared/gyp_configuration.py b/starboard/android/shared/gyp_configuration.py index 2b1d2d0c5aa9..13436a858978 100644 --- a/starboard/android/shared/gyp_configuration.py +++ b/starboard/android/shared/gyp_configuration.py @@ -28,10 +28,6 @@ def __init__(self, platform): super().__init__(platform) self.AppendApplicationConfigurationPath(os.path.dirname(__file__)) - def GetDeployPathPatterns(self): - # example src/out/android-arm64/devel/cobalt.apk - return ['*.apk'] - def GetLauncher(self): """Gets the module used to launch applications on this platform.""" module_path = os.path.abspath( diff --git a/starboard/build/platform_configuration.py b/starboard/build/platform_configuration.py index 13268c39d06c..865cdd52cc0f 100644 --- a/starboard/build/platform_configuration.py +++ b/starboard/build/platform_configuration.py @@ -159,18 +159,6 @@ def GetTestEnvVariables(self): """Gets a dict of environment variables needed by unit test binaries.""" return {} - def GetDeployPathPatterns(self): - """Gets deployment paths patterns for files to be included for deployment. - - Example: ['deploy/*.exe', 'content/*'] - - Returns: - A list of path wildcard patterns within the PRODUCT_DIR - (src/out/_) that need to be deployed in order for the - platform launcher to run target executable(s). - """ - raise NotImplementedError() - def GetTestTargets(self): """Gets all tests to be run in a unit test run. diff --git a/starboard/xb1/gyp_configuration.py b/starboard/xb1/gyp_configuration.py index eeab58564d16..7cde6827e6a4 100644 --- a/starboard/xb1/gyp_configuration.py +++ b/starboard/xb1/gyp_configuration.py @@ -36,7 +36,3 @@ def GetLauncher(self): os.path.join(os.path.dirname(__file__), 'launcher.py')) launcher_module = imp.load_source('launcher', module_path) return launcher_module - - def GetDeployPathPatterns(self): - """example src/out/xb1_devel/appx""" - return ['appx/*'] # Overinclude