| # Copyright 2017 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| config("zxcpp_config") { | |
| include_dirs = [ "include" ] | |
| } | |
| static_library("zxcpp") { | |
| # Don't forget to update rules.mk as well for the Zircon build. | |
| sources = [ | |
| "include/zxcpp/new.h", | |
| "new.cpp", | |
| "pure_virtual.cpp", | |
| ] | |
| public_configs = [ ":zxcpp_config" ] | |
| } |