diff --git a/scripts/get_clang_paths.js b/scripts/get_clang_paths.js index 73fb693fe..1491d9e75 100644 --- a/scripts/get_clang_paths.js +++ b/scripts/get_clang_paths.js @@ -1,68 +1,40 @@ // @flow const clangPaths = [ { path: 'native/cpp/CommonCpp', extensions: ['h', 'cpp'], excludes: ['_generated'], }, - { - path: 'services/lib/src', - extensions: ['cpp', 'h'], - }, - { - path: 'services/tunnelbroker/src', - extensions: ['cpp', 'h'], - }, - { - path: 'services/tunnelbroker/test', - extensions: ['cpp', 'h'], - }, - { - path: 'services/backup/src', - extensions: ['cpp', 'h'], - }, - { - path: 'services/backup/test', - extensions: ['cpp', 'h'], - }, - { - path: 'services/blob/src', - extensions: ['cpp', 'h'], - }, - { - path: 'services/blob/test', - extensions: ['cpp', 'h'], - }, { path: 'native/android/app/src/cpp', extensions: ['cpp', 'h'], }, { path: 'native/ios/Comm', extensions: ['h', 'm', 'mm'], }, { path: 'native/ios/CommTests', extensions: ['mm'], }, { path: 'native/ios/NotificationService', extensions: ['h', 'm', 'mm'], }, { path: 'native/android/app/src/main/java/app/comm', extensions: ['java'], excludes: ['generated'], }, { path: 'web/cpp', extensions: ['cpp', 'h'], }, ]; function getClangPaths() { return clangPaths.map(pathItem => pathItem.path); } module.exports = { getClangPaths, clangPaths };