blob: 81402d123ff99a3a73ca9f13b51d0b935145fcc1 [file] [log] [blame]
btolsch762c4da2018-03-19 12:27:00 -07001# Copyright 2018 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
5executable("hello") {
6 sources = [
7 "hello.cc",
8 ]
9
10 deps = [
11 ":hello_shared",
12 ":hello_static",
13 ]
14}
15
16shared_library("hello_shared") {
17 sources = [
18 "hello_shared.cc",
19 "hello_shared.h",
20 ]
21
22 defines = [ "OPENSCREEN_SHARED_IMPLEMENTATION" ]
23}
24
25static_library("hello_static") {
26 sources = [
27 "hello_static.cc",
28 "hello_static.h",
29 ]
30}