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