| OLD | NEW | 
|    1 project('adblockpluscore', 'cpp', license: ['GPL3'], meson_version: '>0.40.0') |    1 project('adblockpluscore', 'cpp', license: ['GPL3'], meson_version: '>0.40.0') | 
|    2  |    2  | 
|    3 native = get_option('native') |    3 native = get_option('native') | 
|    4 if native |    4 if native | 
|    5    target_type='native' |    5    target_type='native' | 
|    6 else |    6 else | 
|    7    target_type='js' |    7    target_type='js' | 
|    8 endif |    8 endif | 
|    9  |    9  | 
|   10 if target_type == 'js' |   10 if target_type == 'js' | 
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   80   'compiled/filter/ElemHideException.cpp', |   80   'compiled/filter/ElemHideException.cpp', | 
|   81   'compiled/filter/ElemHideFilter.cpp', |   81   'compiled/filter/ElemHideFilter.cpp', | 
|   82   'compiled/filter/Filter.cpp', |   82   'compiled/filter/Filter.cpp', | 
|   83   'compiled/filter/InvalidFilter.cpp', |   83   'compiled/filter/InvalidFilter.cpp', | 
|   84   'compiled/filter/RegExpFilter.cpp', |   84   'compiled/filter/RegExpFilter.cpp', | 
|   85   'compiled/filter/WhitelistFilter.cpp', |   85   'compiled/filter/WhitelistFilter.cpp', | 
|   86   'compiled/storage/FilterStorage.cpp', |   86   'compiled/storage/FilterStorage.cpp', | 
|   87   'compiled/subscription/DownloadableSubscription.cpp', |   87   'compiled/subscription/DownloadableSubscription.cpp', | 
|   88   'compiled/subscription/Subscription.cpp', |   88   'compiled/subscription/Subscription.cpp', | 
|   89   'compiled/subscription/UserDefinedSubscription.cpp', |   89   'compiled/subscription/UserDefinedSubscription.cpp', | 
 |   90   'compiled/ElemHide.cpp', | 
|   90 ] |   91 ] | 
|   91 # sources specific to core |   92 # sources specific to core | 
|   92 core_sources = [ |   93 core_sources = [ | 
|   93   'compiled/traceInit.cpp', |   94   'compiled/traceInit.cpp', | 
|   94 ] |   95 ] | 
|   95 # sources for the bindings generator |   96 # sources for the bindings generator | 
|   96 bindings_sources = [ |   97 bindings_sources = [ | 
|   97   'compiled/bindings/generator.cpp', |   98   'compiled/bindings/generator.cpp', | 
|   98   'compiled/bindings/main.cpp', |   99   'compiled/bindings/main.cpp', | 
|   99 ] |  100 ] | 
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  190                                     '--js-library', JS_LIBRARY, |  191                                     '--js-library', JS_LIBRARY, | 
|  191                                     '@INPUT@' |  192                                     '@INPUT@' | 
|  192                                   ] + compiler_args + optional_args) |  193                                   ] + compiler_args + optional_args) | 
|  193 else |  194 else | 
|  194   adblockpluscore = library('adblockpluscore', shared_sources, |  195   adblockpluscore = library('adblockpluscore', shared_sources, | 
|  195                             native_sources, |  196                             native_sources, | 
|  196                             cpp_args: ADDITIONAL_PARAMS + CORE_PARAMS, |  197                             cpp_args: ADDITIONAL_PARAMS + CORE_PARAMS, | 
|  197                             link_args: LINK_PARAMS) |  198                             link_args: LINK_PARAMS) | 
|  198 endif |  199 endif | 
|  199  |  200  | 
| OLD | NEW |