mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Python
		
	
	
"""
 | 
						|
mbed SDK
 | 
						|
Copyright (c) 2011-2013 ARM Limited
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
"""
 | 
						|
from workspace_tools.paths import *
 | 
						|
from workspace_tools.data.support import *
 | 
						|
 | 
						|
 | 
						|
LIBRARIES = [
 | 
						|
    # RTOS libraries
 | 
						|
    {
 | 
						|
        "id": "rtx",
 | 
						|
        "source_dir": MBED_RTX,
 | 
						|
        "build_dir": RTOS_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES],
 | 
						|
    },
 | 
						|
    {
 | 
						|
        "id": "rtos",
 | 
						|
        "source_dir": RTOS_ABSTRACTION,
 | 
						|
        "build_dir": RTOS_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES, MBED_RTX],
 | 
						|
    },
 | 
						|
    
 | 
						|
    # USB Device libraries
 | 
						|
    {
 | 
						|
        "id": "usb",
 | 
						|
        "source_dir": USB,
 | 
						|
        "build_dir": USB_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES],
 | 
						|
    },
 | 
						|
    
 | 
						|
    # USB Host libraries
 | 
						|
    {
 | 
						|
        "id": "usb_host",
 | 
						|
        "source_dir": USB_HOST,
 | 
						|
        "build_dir": USB_HOST_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES, FAT_FS, MBED_RTX, RTOS_ABSTRACTION],
 | 
						|
    },
 | 
						|
    
 | 
						|
    # DSP libraries
 | 
						|
    {
 | 
						|
        "id": "cmsis_dsp",
 | 
						|
        "source_dir": DSP_CMSIS,
 | 
						|
        "build_dir": DSP_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES],
 | 
						|
    },
 | 
						|
    {
 | 
						|
        "id": "dsp",
 | 
						|
        "source_dir": DSP_ABSTRACTION,
 | 
						|
        "build_dir": DSP_LIBRARIES,
 | 
						|
        "dependencies": [MBED_LIBRARIES, DSP_CMSIS],
 | 
						|
    },
 | 
						|
    
 | 
						|
    # Network libraries
 | 
						|
    {
 | 
						|
        "id": "eth",
 | 
						|
        "source_dir": [ETH_SOURCES, LWIP_SOURCES],
 | 
						|
        "build_dir": ETH_LIBRARY,
 | 
						|
        "dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES]
 | 
						|
    },
 | 
						|
    
 | 
						|
    {
 | 
						|
        "id": "ublox",
 | 
						|
        "source_dir": [UBLOX_SOURCES, CELLULAR_SOURCES, CELLULAR_USB_SOURCES, LWIP_SOURCES],
 | 
						|
        "build_dir": UBLOX_LIBRARY,
 | 
						|
        "dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, USB_HOST_LIBRARIES],
 | 
						|
    },
 | 
						|
 | 
						|
]
 | 
						|
 | 
						|
 | 
						|
LIBRARY_MAP = dict([(library['id'], library) for library in LIBRARIES])
 | 
						|
 | 
						|
 | 
						|
class Library:
 | 
						|
    DEFAULTS = {
 | 
						|
        "supported": DEFAULT_SUPPORT,
 | 
						|
        'dependencies': None,
 | 
						|
    }
 | 
						|
    def __init__(self, lib_id):
 | 
						|
        self.__dict__.update(Library.DEFAULTS)
 | 
						|
        self.__dict__.update(LIBRARY_MAP[lib_id])
 | 
						|
    
 | 
						|
    def is_supported(self, target, toolchain):
 | 
						|
        if not hasattr(self, 'supported'):
 | 
						|
            return True
 | 
						|
        return (target.name in self.supported) and (toolchain in self.supported[target.name])
 |