| # Copyright 2019 The Chromium Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| import("//testing/test.gni") | |
| config("one_euro_filter_config") { | |
| include_dirs = [ "src" ] | |
| } | |
| static_library("one_euro_filter") { | |
| sources = [ | |
| "src/OneEuroFilter.cpp", | |
| "src/OneEuroFilter.h", | |
| ] | |
| configs -= [ "//build/config/compiler:chromium_code" ] | |
| configs += [ "//build/config/compiler:no_chromium_code" ] | |
| public_configs = [ ":one_euro_filter_config" ] | |
| } |