OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//mojo/tools/embed/rules.gni") |
| 6 |
| 7 source_set("libteken") { |
| 8 sources = [ |
| 9 "teken/teken.c", |
| 10 "teken/teken.h", |
| 11 "teken/teken_scs.h", |
| 12 "teken/teken_state.h", |
| 13 "teken/teken_subr.h", |
| 14 "teken/teken_subr_compat.h", |
| 15 "teken/teken_wcwidth.h", |
| 16 ] |
| 17 |
| 18 defines = [ "__unused=__attribute__((unused))" ] |
| 19 } |
| 20 |
| 21 embed_file("libteken_license_text") { |
| 22 source = "COPYRIGHT" |
| 23 namespace = "licenses" |
| 24 variable = "kLibtekenLicenseText" |
| 25 } |
OLD | NEW |