blob: f2f7c665a7b29df8711a780dceabe4eb84535b15 [file] [log] [blame]
Liam McLoughlin4f268f42013-03-04 18:09:53 -05001#!/bin/bash
2
3# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7set -e
8
9OUT=$1
10shift
11for v; do
Alex Vakulenko02a06c42014-08-26 09:56:46 -070012 # Extract all the libchromeos sublibs from 'dependencies' section of
13 # 'libchromeos-<(libbase_ver)' target in libchromeos.gypi and convert them
14 # into an array of "-lchromeos-<sublib>-<v>" flags.
15 sublibs=($(sed -n "
16 /'target_name': 'libchromeos-<(libbase_ver)'/,/target_name/ {
17 /dependencies/,/],/ {
18 /libchromeos/ {
19 s:[',]::g
20 s:<(libbase_ver):${v}:g
21 s:libchromeos:-lchromeos:
22 p
23 }
24 }
25 }" libchromeos.gypi))
26
27 echo "GROUP ( AS_NEEDED ( ${sublibs[@]} ) )" > "${OUT}"/lib/libchromeos-${v}.so
Liam McLoughlin4f268f42013-03-04 18:09:53 -050028
29 deps=$(<"${OUT}"/gen/libchromeos-${v}-deps.txt)
30 pc="${OUT}"/lib/libchromeos-${v}.pc
31
32 sed \
33 -e "s/@BSLOT@/${v}/g" \
34 -e "s/@PRIVATE_PC@/${deps}/g" \
35 "libchromeos.pc.in" > "${pc}"
Alex Vakulenkof788c952014-08-20 17:35:12 -070036
37 deps_test=$(<"${OUT}"/gen/libchromeos-test-${v}-deps.txt)
38 sed \
39 -e "s/@BSLOT@/${v}/g" \
40 -e "s/@PRIVATE_PC@/${deps}/g" \
41 "libchromeos-test.pc.in" > "${OUT}/lib/libchromeos-test-${v}.pc"
Liam McLoughlin4f268f42013-03-04 18:09:53 -050042done