Popular sites on the NTP: Favicon improvements
[chromium-blink-merge.git] / tools / gn / example / BUILD.gn
blob58af95230440d10161a321fad8edeeb7ed57dbd8
1 # Copyright 2014 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.
5 executable("hello") {
6   sources = [
7     "hello.cc",
8   ]
10   deps = [
11     ":hello_static",
12     ":hello_shared",
13   ]
16 shared_library("hello_shared") {
17   sources = [
18     "hello_shared.cc",
19     "hello_shared.h",
20   ]
22   defines = [ "HELLO_SHARED_IMPLEMENTATION" ]
25 static_library("hello_static") {
26   sources = [
27     "hello_static.cc",
28     "hello_static.h",
29   ]