xref: /aosp_15_r20/external/modp_b64/BUILD.gn (revision c3cd14fb6370b1f0a2b85e79eb9b360b8782fd16)
1*c3cd14fbSJerome Gaillard# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2*c3cd14fbSJerome Gaillard# Use of this source code is governed by a BSD-style license that can be
3*c3cd14fbSJerome Gaillard# found in the LICENSE file.
4*c3cd14fbSJerome Gaillard
5*c3cd14fbSJerome Gaillardconfig("modp_b64_config") {
6*c3cd14fbSJerome Gaillard  include_dirs = [ "." ]
7*c3cd14fbSJerome Gaillard}
8*c3cd14fbSJerome Gaillard
9*c3cd14fbSJerome Gaillardsource_set("modp_b64") {
10*c3cd14fbSJerome Gaillard  sources = [
11*c3cd14fbSJerome Gaillard    "modp_b64.cc",
12*c3cd14fbSJerome Gaillard    "modp_b64/modp_b64.h",
13*c3cd14fbSJerome Gaillard    "modp_b64_data.h",
14*c3cd14fbSJerome Gaillard  ]
15*c3cd14fbSJerome Gaillard
16*c3cd14fbSJerome Gaillard  public_configs = [ ":modp_b64_config" ]
17*c3cd14fbSJerome Gaillard  include_dirs = [ "modp_b64" ]
18*c3cd14fbSJerome Gaillard}
19