blob: 11c3127d013519eba99f5ed03ad7b0dade8f527f [file] [log] [blame]
Arman Uguray420545e2015-07-09 16:58:43 -07001# Copyright (c) 2013 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
Alex Vakulenko8a6dfb42016-05-12 09:26:28 -07005config("modp_b64_config") {
6 include_dirs = [ "." ]
7}
8
Arman Uguray420545e2015-07-09 16:58:43 -07009source_set("modp_b64") {
10 sources = [
11 "modp_b64.cc",
Alex Vakulenko8a6dfb42016-05-12 09:26:28 -070012 "modp_b64/modp_b64.h",
Arman Uguray420545e2015-07-09 16:58:43 -070013 "modp_b64_data.h",
14 ]
Jakub Pawlowski99dc1392016-02-25 11:43:58 -080015
Alex Vakulenko8a6dfb42016-05-12 09:26:28 -070016 public_configs = [ ":modp_b64_config" ]
17 include_dirs = [ "modp_b64" ]
Arman Uguray420545e2015-07-09 16:58:43 -070018}