|
10 | 10 | from argparse import ArgumentParser
|
11 | 11 | from os.path import normpath, realpath
|
12 | 12 |
|
13 |
| -from tools.paths import EXPORT_DIR, MBED_DRIVERS, MBED_PLATFORM, \ |
14 |
| - MBED_HAL, MBED_TARGETS_PATH, MBED_LIBRARIES |
| 13 | +from tools.paths import EXPORT_DIR, MBED_HAL, MBED_LIBRARIES |
15 | 14 | from tools.export import EXPORTERS, mcu_ide_matrix
|
16 | 15 | from tools.tests import TESTS, TEST_MAP
|
17 | 16 | from tools.tests import test_known, test_name_known, Test
|
18 | 17 | from tools.targets import TARGET_NAMES
|
19 | 18 | from tools.utils import argparse_filestring_type, argparse_many, args_error
|
20 | 19 | from tools.utils import argparse_force_lowercase_type
|
21 | 20 | from tools.utils import argparse_force_uppercase_type
|
22 |
| -from tools.project_api import export_project |
| 21 | +from tools.project_api import export_project, get_exporter_toolchain |
23 | 22 | from tools.options import extract_profile
|
24 | 23 |
|
25 | 24 |
|
@@ -55,9 +54,6 @@ def setup_project(ide, target, program=None, source_dir=None, build=None, export
|
55 | 54 | if MBED_LIBRARIES in test.dependencies:
|
56 | 55 | test.dependencies.remove(MBED_LIBRARIES)
|
57 | 56 | test.dependencies.append(MBED_HAL)
|
58 |
| - test.dependencies.append(MBED_DRIVERS) |
59 |
| - test.dependencies.append(MBED_PLATFORM) |
60 |
| - test.dependencies.append(MBED_TARGETS_PATH) |
61 | 57 |
|
62 | 58 |
|
63 | 59 | src_paths = [test.source_dir]
|
|
0 commit comments