repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
tools
/
gn
/
tutorial
/
say_hello.cc
blob
d8092bd4daebeff13fed17e8b5ecc7c272f67fcf
1
// Copyright 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
5
#include
"tools/gn/tutorial/hello.h"
6
7
int
main
() {
8
#if defined(TWO_PEOPLE)
9
Hello
(
"Bill"
,
"Joy"
);
10
#else
11
Hello
(
"everyone"
);
12
#endif
13
return
0
;
14
}